changePolylineVisible method
Implementation
@override
Future<void> changePolylineVisible(String shapeId, bool visible) async {
if (visible) {
_webPolyline[shapeId]!.setMap(controller);
_webPolylineStroke[shapeId]?.setMap(controller);
} else {
_webPolyline[shapeId]!.setMap(null);
_webPolylineStroke[shapeId]?.setMap(null);
}
}