iPad / iPhone上的Openlayers + OSM磁贴

时间:2015-09-18 20:09:08

标签: android ios openlayers openstreetmap

我在响应式网站上使用OpenStreetMap并出现一些显示问题。

地图在我的Samsung S4 Android上显示得非常好。 我的iPad2上使用OS5或Sony Z with Android

显示地图

我用

map = new OpenLayers.Map("basicMap");
var mapnik = new OpenLayers.Layer.OSM();
map.addLayer(mapnik);

我认为错误就在这里

map.setCenter(new OpenLayers.LonLat(3, 3) // Center of the map
                        .transform(
                            new OpenLayers.Projection("EPSG:4326"), // transform from WGS 1984
                            new OpenLayers.Projection("EPSG:900913") // to Spherical Mercator Projection
                        ), 15 // Zoom level
                    );

但是没有参数的transform()的使用不成功。

有什么建议吗?

0 个答案:

没有答案