Esta es mi primera vez en stackoverflow y trabajando con Openlayers & Google Maps.OpenLayers Problema de proyección de Google Maps con KML
He estado navegando en diferentes foros & sitios, incluyendo OpenLayers.org, para solucionar mi problema. He hecho búsquedas en una combinación de lo siguiente: capas abiertas, proyecciones de mapas de Google y mercator esférico ... pero no he encontrado una solución.
Problema: Los datos KML de una llamada al servicio web (func setDataSource) están cambiando a medida que acerca y aleja el mapa. Mi suposición es que las proyecciones en mi código son incorrectas o tal vez erróneas. No tengo ningún antecedente en el mapa proyecciones por lo que es difícil de digerir la terminología de mapas en línea :-(. Alguien puede ayudar?
//start here
var options = {
projection: new OpenLayers.Projection("EPSG:900913"),
displayProjection: new OpenLayers.Projection("EPSG:4326"),
units: "m",
numZoomLevels: 18,
maxResolution: 156543.0339,
maxExtent: new OpenLayers.Bounds(-20037508, -20037508,
20037508, 20037508)};
//*map = new OpenLayers.Map('map');
map = new OpenLayers.Map('map', options);
var gphy = new OpenLayers.Layer.Google(
"Google Street",
{'sphericalMercator':true});
// Add the background images via WMS
var bglayer = new OpenLayers.Layer.WMS("OpenLayers WMS",
"http://labs.metacarta.com/wms/vmap0", {layers: 'basic'}, {'reproject': true});
//map.addLayer(bglayer);
map.addLayers([gphy, bglayer]);
map.addControl(new OpenLayers.Control.LayerSwitcher());
map.zoomToMaxExtent(); //* Zoom all the way out, this command also initalizes the map
OpenLayers.Console.log("initialized");
}
function setDataSource() {
OpenLayers.Console.log("Setting data source to " + OpenLayers.Util.getElement('loc').value);
if (layer != undefined) {map.removeLayer(layer)};
if (selectControl != undefined) {map.removeControl(selectControl)};
// Encode the destination url as a parameter string.
var params = OpenLayers.Util.getParameterString({url:OpenLayers.Util.getElement('loc').value})
// Make the http request to the transformer, with the destination url as a parameter.
layer = new OpenLayers.Layer.GML("KML", transformerURL + params,
{
format: OpenLayers.Format.KML,
formatOptions: {
extractStyles: true,
extractAttributes: true,
maxDepth: 2,
//projection: new OpenLayers.Projection("EPSG:4326"),
}
});
map.addLayer(layer);
Gracias !!!
Los chicos y chicas de [GIS.stackexchange.com] (http://gis.stackexchange.com/) probablemente les sea más fácil ayudarlo la próxima vez ... – DefenestrationDay
tal vez me puedan ayudar con este problema [Openlayers Google Map Bordes] [1] [1]: http://stackoverflow.com/questions/29120583/how-to-remove-countries-borders-from-a-google- map-integrated-in-opnelayers –