removeMarker method
Remove a marker from the map
Implementation
Future<void> removeMarker(String markerId) async {
try {
await _channel.invokeMethod('removeMarker', {'markerId': markerId});
} catch (e) {
debugPrint('Error removing marker: $e');
}
}