Hi,
I just started coding with google maps API and i can't find a method
showMapBlowUp() in API V3 or the way to do the same thing.
now I have the code like this and the infowindow only shows the empty
<div> not the embedded map:
google.maps.event.addListener(map, 'click', function(location) {
miniLatlng = new google.maps.LatLng(location.latLng.lat(),
location.latLng.lng());
var infowindowZoom = new google.maps.InfoWindow(
{
content: '<div id="miniMap_canvas" style="width:200px; heigth:200px"
border=1"></div>',
size: new google.maps.Size(50,25)
});
infowindowZoom.open(map, new
google.maps.Polygon({position:miniLatlng}));
tracear("infowindowZoom() mostrada infowindowZoom");
var miniMapOptions = {
zoom: 18,
center: miniLatlng,
mapTypeId: google.maps.MapTypeId.SATELLITE,
mapTypeControl: false,
navigationControl: true,
navigationControlOptions: {position:
google.maps.ControlPosition.TOP_LEFT, style:
google.maps.NavigationControlStyle.SMALL}
};
var miniMap = new
google.maps.Map(document.getElementById("miniMap_canvas"),
miniMapOptions);
});
Is there an example or anything where i could see a possible solution
or should i start thinking in going back to V2?
Thanks,
Alex
--
You received this message because you are subscribed to the Google Groups
"Google Maps JavaScript API v3" 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-js-api-v3?hl=en.