> At this point there's only images for about half the markers. If it
> has one, it will show on the second tab.

Good to know that.
Okay, I found a marker titled "Exposition Green Corridor" that shows
an image in the second tab, but fails on maximising.
Maximising calls for "http://ballonawatershed.org/images/Park"; which
fails to find it 404.

Your JSON processing code creates Tab2 content like
    <img ... src = "http://ballonawatershed.org/images/'+ entry["gsx
$"+ param_image].$t +'"/>'
which for this example evaluates to 
http://ballonawatershed.org/images/Expo_ROW.JPG
because the JSON feed  includes
    "gsx$image":{"$t":"Expo_ROW.JPG"}

Your JSON processing code also calls createMarker() with 21 arguments.

createMarker() only expects 11 arguments and ignores the surplus.
The 11th argument is internally referenced 'image' and should contain
the maximised photo name.
But ...

Your JSON processing code is passing a variable 'type2' as the 11th
argument.
'type2' is derived from the JSON with
   type2 = entry["gsx$"+param_type2Column].$t;
which in this case points to the JSON data
     "gsx$type2":{"$t":"Park"}

There is no image at http://ballonawatershed.org/images/Park so no
image gets shown in the maximised infowindow.

I think you have your arguments muddled up when calling
createMarker() ??

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