I'm using an OpenLayers-map and I want to use in it different mapservers, that use different coordinate systems. Can OpenLayers integrate it in the same map and automatically converts coordinate-systems?
|
feedback
|
|
Depending on the layers, you will always have some sort of baselayer (the map) wich you can't really convert. If you want to add data (markers, geo json stuff, etc) on that map you will have to convert it to the projection the baselayer is using. For markers this can easyly be done by:
Check out the Openlayers documentation about transforming location from one system to another. | |||
|
feedback
|
|
If the map servers are providing different rasters then you may be out of luck. However, if they are providing vectors (eg. KML files) or JavaScript-written map objects (eg. Dre's answer) then you can transform between different projections, so that all the data appears on the same projection and coordinate system as the base map. OpenLayers has the hooks for this (see Dre's answer) but you will probably have to include the Proj4JS library which provides the functionality. Or you could use Proj4JS yourself to transform the coordinates before plotting. | |||
|
feedback
|