On Dec 15, 5:54 pm, Alex <[email protected]> wrote: > Why is it that My KML doesn't seem to want to show up on my map? > > http://www.co.frederick.va.us/planning/default_copy.aspx
The map is actually at http://www.co.frederick.va.us/planning/google_test.html The initialize() function in that page fails at line 70 because setupWeatherMarkers is not defined; as that's before you add your KML overlay, it could stop that happening. However the real reason your KML is not showing up is that it's not being served. You're currently requesting http://co.frederick.va.us/planning/CountyBoundary.kml which doesn't exist or is unreachable. Correcting that to http://www.co.frederick.va.us/planning/CountyBoundary.kml results in a 404 from IIS, which may mean that IIS is not configured to serve KML. IIS requires each file extension to be given a defined MIME type, or it returns 404. Andrew -- 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.
