vote up 0 vote down star

I use custom images in google maps markers. I have included google earth control through google earth browser plugin. But they don't show custom images in google earth control? Any way I can solve this problem?

Thanks, Jayesh

flag

40% accept rate
Where are you trying to load the images for your custom markers from? Are you defining them in javascript or KML? – Fraser Sep 28 at 23:58

1 Answer

vote up 0 vote down

In general, you define your own symbols via Style/Iconstyle/Icon structure first, then you reference them in placemarks using the styleUrl element.

If you have a KML/KMZ that works well with the standalone GE application showing your custom icons, you can load it into the API using some JavaScript like

var networkLink = ge.createNetworkLink('My cool KML/KMZ file');
var link = ge.createLink('Link to My cool ...');
link.setHref('http://www.here.on.the.net/MyCool.kmz');
networkLink.setLink(link);
ge.getFeatures().appendChild(networkLink);

If not you may get the stylemaps into the "internal KML" via some code. For example see here

Hope this helps. Good luck MikeD

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.