I would like to get center coordinates of a country using Javascript. Is there any xml file that provides this kind of data, for use in a web application? I am basically trying to put data on the map using country names in OpenLayers.
|
Using Google Maps API you can use the Geocoder class for this.
You might want to examine the | ||||
feedback
|
|
You might have download a suitable GIS dataset and generate the information you want yourself. For example: With a program like Quantum GIS you can calculate the centroids of each county and generate a table from the country name and x/y. Note that Koordinates also has a vector API that allows you query features by location and optionally pull out full geometries: OpenLayers can load full geometries and calculate centroids (eg OpenLayers getCentroid Docs) but considering the size and complexity of a world boundaries dataset, performance won't be very good. Putting them together Your best option is probably this: once you've got the centroids from the countries, use the Koordinates Vector API (without getting the geometries) to determine which country the selected point is in. From the response, lookup the centroid by name from your data file and centre the map on this location. | |||
|
feedback
|