Reputation: 11
I have created a google map and am linking to a kml layer (shown below) in order to create the placemarks. I am trying to do two things:
layers = new google.maps.KmlLayer('url of kml file is here', { preserveViewport: true });
Upvotes: 1
Views: 1863
Reputation: 161404
Can't do either with KmlLayer. Look at using a third party KML parser like geoxml3 or geoxml-v3; or importing your KML into a FusionTable and using a FusionTablesLayer and querying the table for the sidebar and hover information.
Upvotes: 1