Last night google updated the map API v3, and the added pixel bright....
if you are using the progress bar and you used the common variable
name of pb. for the progress bar, you now have to change that name to
something else.

Best of luck
Steven Benjamin
[email protected]

On Fri, May 6, 2011 at 5:59 PM, Abe Connally <[email protected]> wrote:
> I have a pretty simple map system:
> http://www.visitbigbend.com/map2010/index.php
>
> It has been running fine for several months, but I just noticed today that
> my icons are not showing up.  I don't think anything has been changed with
> the system, and I know the icons were working a few weeks ago.
>
> I assume the error is in my javascript, in the function CreateMarker(); on
> line 64 of map.js (http://www.visitbigbend.com/map2010/map.js)
>
> First, I set up an array with all the icons like this:
>
> var allicons = [];
> allicons["100527"]='http://www.visitbigbend.com/map_images/icons/icons2/eat_hotels/hotel.png';
>
>
> Then, I call the CreateMarker function:
>
> var point = new google.maps.LatLng(29.462701332908242,-103.55291247367859);
> CreateMarker('100073', point, '17', '100067', 'Ten Bits Ranch', '100527');
>
>
> Here's a code snippet from that function:
>
> function CreateMarker(id, point, myzoom, type, name, iconname) {
>     var marker = new google.maps.Marker({
>        id: id,
>        position: point,
>        map: map,
>        name: name,
>        icon: allicons[iconname],
>        type: type
>     });
>
> All I can think is that:
> 1. There is something wrong with the data somewhere preventing it from
> loading markers (not likely, as data has not changed, and things were
> working just fine)
> 2. Something changed with the GoogleMaps API that doesn't like my code.
>
> Can anyone give me some pointers?  Firebug and FF4 are not catching any
> errors.
>
> Thanks!
>
> --
> 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.
>

-- 
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.

Reply via email to