I'm getting the KML data from the Open Charge Map.
In general, when imports KML in google map, all the marks create in the map.
If I click a mark, the Mark doesn't show as like website.
I want to add the right style to mark.
The code for the importing XML is the following:
InputStream inputStream = kml_data
KmlLayer layer = new KmlLayer(map, inputStream, context);
layer.addLayerToMap();
What should I add here more?
I want to implement this mark in android app.