Geographical boundaries of states/provinces -> Google Maps Polygon
Asked Answered
G

4

37

I'm building a web application that is going to dynamically highlight certain U.S. states and Canadian provinces on a Google Map, based on buttons and click events.

Plan A) Polygons

My primary idea for this was to draw Polygons. For this I need lists of coordinates (latitude + longitude) of all state and province outlines (clockwise or counter-clockwise). On government websites I found all sorts of different formats (i.e. E00), but I have trouble converting these formats into a simple list of coordinates, that I could use to create markers or a polygon on a map. Do you have any tips where to get these coordinates?

Plan B) Overlays

AFAIK, if you use overlays on Google Maps, they become pixelated as you zoom in further (or can you overlay SVGs?) In my case I would need 50 + 11 overlays in the worst-case (all states and all provinces). Is that still possible with Google Maps or will it get unsuably slow?

I'm a bit startled that there isn't a straight-forward way to highlight a state or province, as I would think this is a very common tasks for people using an API for maps.

Thanks in advance

Genagenappe answered 28/11, 2009 at 23:49 Comment(1)
Take a look at this question.Hexastyle
E
80

I've got XML for US state polygons here. I use them like this.

I deliberately kept the detail fairly light to reduce the loading time and end up with a map that's reasonably responsive in slow browsers.

I don't have anything for Canada.

Eparchy answered 29/11, 2009 at 1:10 Comment(11)
Thanks a bunch! Your data worked without any problems. Like the level of detail too. You rock!Genagenappe
@Mike Williams: Why do the boundaries of adjacent states fit so badly together? I understand that there is some limit in resolution, but there is no reason for gaps and overlaps (visible in higher zoom levels) between adjacent states.Zareba
Do you know where I can find this data at the city level?Gower
Any idea where I can get a file with a bit more detail?Coordinate
Try the Natural Earth dataset. It is also available in FusionTables.Shire
Thanks for the post Mike. I'm also trying to keep things 'light'.Radiance
@geocodezip's comment should be an answer of its own, that Natural Earth website is awesome!Sikorsky
@Mike Williams, where did you get that XML file for the US state polygons? I am looking for one exactly like that one, but I would like it to include state counties. Any help you can provide is appreciated.Oeildeboeuf
This set is awesome but is missing District of Columbia - it's lumped into Maryland :(Premundane
I need coordinates for all city boundaries in Pakistan. Can anyone help please...Kerbing
@Mike Willians, seconding Curd's concerns. New York and New Jersey have overlapping regions: i.imgur.com/tjdSwPS.jpgBailly
L
5

Using the XML provided, I created a JSON file with a dictionary that includes the 50 states, Washington D.C. and a rough outline of the Canadian provinces to address SaltyNuts' comment as well as Mike Williams note of not having anything for Canada json.

This handy online tool from BirdTheme was what I used to draw the polygons for the provinces for anyone else who needs different levels of detail or to create their own set of coordinates.

Latticework answered 24/3, 2016 at 16:39 Comment(0)
R
2

Old question but you can get a more detailed set of points for each US state border from the google website at https://developers.google.com/kml/documentation/us_states.kml

It needs a little bit of parsing of the xml though.

Renteria answered 11/5, 2018 at 18:47 Comment(0)
D
0

Here's the info for Canadian Provinces. I've copied only the first GPS coordinate from the Google Map link.

/**
 * Searched for Alberta, Canada and copied the first thing after the @ sign
 * @see https://www.google.bg/maps/place/Yukon+Territory,+Canada/@64.5610006,-141.332713,5z/data=!3m1!4b1!4m5!3m4!1s0x51178198b4528b89:0x2e149cd561cc96ea!8m2!3d64.2823274!4d-135?hl=en
 * @var array
 */
$provinces_gps = array(
    "AB" => "54.1784838,-123.9541477",
    "BC" => "53.8348151,-135.5103986",
    "MB" => "54.1798816,-104.4465713",
    "NB" => "46.2679312,-68.6551949",
    "NL" => "53.1668149,-69.1783083",
    "NT" => "68.4817407,-136.7732486",
    "NS" => "45.2906308,-65.2759181",
    "NU" => "63.5954344,-124.1555502",
    "ON" => "48.9347914,-93.7155729",
    "PE" => "46.5031512,-63.7525627",
    "QC" => "53.4650568,-77.3895206",
    "SK" => "54.1797758,-114.6389862",
    "YT" => "64.5610006,-141.332713",
);
Dinkins answered 27/5, 2016 at 21:48 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.