Looks like issue with my dns update

Here's the code

  <script type="text/javascript">

    function initialize() {
      if (GBrowserIsCompatible()) {
// Init the map
var map = new GMap2(document.getElementById('map_canvas'));
map.addControl(new GSmallMapControl());
map.setCenter(new GLatLng(59.5, 14.0), 6);
  var bounds = map.getBounds();
        var southWest = bounds.getSouthWest();
        var northEast = bounds.getNorthEast();
        var lngSpan = northEast.lng() - southWest.lng();
        var latSpan = northEast.lat() - southWest.lat();
        for (var i = 0; i < 10; i++) {

// Create a marker
var marker = new GMarker(new GLatLng(southWest.lat() + latSpan *
Math.random(),                                  southWest.lng() +
lngSpan * Math.random());)
// Add the marker to the map
map.addOverlay(marker);
        // Adding a click event to the marker
GEvent.addListener(marker, "click", function() {
marker.openInfoWindow('My InfoWindow');});
      }
    }

    </script>


Thanks and Regards
Gaurav Mishra

Linux User #348873
http://gmishra.com
"When i can run , i will run , When i can walk , i will walk, When i can
crawl , i will crawl. But i will not stop moving forward"



On Mon, Aug 3, 2009 at 8:44 PM, Marcelo<[email protected]> wrote:
>
> On Aug 3, 5:06 pm, Gaurav Mishra <[email protected]> wrote:
>> I am trying to add clickable multiple markers with multiple infowindow here
>>
>> http://propertyoffplan.com/future-events/
>
> 404. Not found.
> In any case, what is "multiple infowindow"?
>
>
> --
> Marcelo - http://maps.forum.nu
> --
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Google Maps API" 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