Re: Marker and Info Window not displaying
when you are creating your marker with var marker = new
GMarker(-93.219036, 30.229712); the API thinks you are passing a point
and an icon reference. Change this line to:
var marker = new GMarker(new GPoint(-93.219036, 30.229712));
or
var marker = new GMarker(point);
0 Comments:
Yorum Gönder
<< Home