Hi,

I created a google earth map by setting maptype to G_SATELLITE_3D_MAP.
But in that marker title was not displaying. How can i display marker
title


    map = new GMap2(document.getElementById('map3d'));
    map.setCenter(new GLatLng(37, -122), 12);
    map.addMapType(G_SATELLITE_3D_MAP);
    map.setMapType(G_SATELLITE_3D_MAP);
    map.setUIToDefault();
    var markerOptions = {title : "Title"};
    var marker = new GMarker(new GLatLng(37, -122),markerOptions);
    map.addOverlay(marker);

............
Thanks,
Navaneeth K

-- 
You received this message because you are subscribed to the Google Groups 
"Google Maps API V2" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-maps-api?hl=en.

Reply via email to