This is where the layer comes from: http://nowcoast.noaa.gov/help/mapservices.shtml?name=mapservices
This layer is really important to the agency because hurricane season is almost here.
Thanks so much for your time,
Jack
--
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 google-map...@googlegroups.com.
To unsubscribe from this group, send email to google-maps-js-a...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
here's a WMS map with the USA extents
http://www.william-map.com/20100526/2/usa.htm
here's a map centered on FL
http://www.william-map.com/20100526/2/fl.htm
and the same web services can be used for radar
http://www.william-map.com/20100526/2/radar.htm
...
<script type="text/javascript" src="http://maps.google.com/maps/api/js?
v=3.1&sensor=true"></script>
<script type="text/javascript">//Delay Loading of the Map API until
the DOM structure has rendered (but not necessarily all of the
images).
document.addEventListener('DOMContentLoaded', function () {
var element = document.createElement('script');
element.src = 'http://maps.google.com/maps/api/js?
v=3.1&sensor=true&callback=initialize';
element.type = 'text/javascript';
document.body.appendChild(element);
}, false);
--
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 google-map...@googlegroups.com.
To unsubscribe from this group, send email to google-maps-js-a...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-maps-js-api-v3?hl=en.
Another way is to use the hybrid map which has separate imagery and
labels, and put the cloud layer between the two layers. However this
method is a hack and isn't really good for production sites:
http://www.william-map.com/20100526/2/hybrid.htm
...
if we say Richmond is the center of VA, with approximate lat/long of
(37.5,-77.5) then we could go for an image 30 degrees wide by 20
degrees, centred on this point, which translates into the WMS request
as
BBOX=-92.5,27.5,-62.5,47.5
and request an image in the 3x2 proportions
width=600&height=400
http://www.william-map.com/20100526/2/va.htm
...
the help file says you can select Google Mercator map projection (EPSG:
900913), but I only got blank images when I tried that option.
Since the JPG files are small, it might be ok to use the Ground
Overlay with a 50% extended border around the image, and then update
the image whenever the zoom changes or the user pans outside this
area.
http://nowcoast.noaa.gov/help/mapservices.shtml?name=mapservices
WMS Map Projections & Spatial Reference Systems (SRS)
The WMS standard requires that every request must include the "SRS"
parameter, which specifies the identifier of the desired Spatial
Reference System (projection) of the requested map image. In addition
to the standard geographic projections, nowCOAST map services allow
requests to be made in the Web Mercator projection, which is used by
many popular online mapping services such as Microsoft Bing and Google
Maps. When overlaying nowCOAST data with Google Maps or Microsoft Bing
imagery, it is recommended to use either the "EPSG:102113" or "EPSG:
900913" SRS values in your requests. Otherwise, the most commonly used
projections are NAD83 and WGS84.
SRS values can be specified in a WMS request by including
"&SRS=IDENTIFIER" in the target WMS URL, where "IDENTIFIER" is
replaced with one of the supported SRS Identifier values, listed
below:
EPSG:4267 North American Datum of 1927 (NAD 27)
EPSG:4269 North American Datum of 1983 (NAD 83)
EPSG:4326 World Geodetic System 1984 (WGS 84)
EPSG:102113 Web Mercator (ESRI Identifier)
EPSG:900913 Web Mercator (Google Identifier)
--
the google tile system is already a mercator projection, so the
transform from the tile coordinates to the world mercator coordinates
is a linear transformation:
http://www.william-map.com/20100526/2/tile.htm
...
--