我从映射开始。我想查看一张法国地图,上面有一个可以个性化的图层。
我已经有了 shapefile 格式的自定义图层。我完全不知道我是否必须创建一个 OpenStreetMap 服务器,或者我是否可以直接使用 Web 应用程序。
你能给我一个使用我的额外图层 shapefile 格式映射显示的起点吗?
我想这个任务很复杂,但你必须从某个地方开始......
非常感谢您
我从映射开始。我想查看一张法国地图,上面有一个可以个性化的图层。
我已经有了 shapefile 格式的自定义图层。我完全不知道我是否必须创建一个 OpenStreetMap 服务器,或者我是否可以直接使用 Web 应用程序。
你能给我一个使用我的额外图层 shapefile 格式映射显示的起点吗?
我想这个任务很复杂,但你必须从某个地方开始......
非常感谢您
这取决于你想做什么。它是一个大的形状文件吗?
您可以在创建 openlayers 地图时做一些事情:
如果您希望在 shapefile 图层上添加 OpenStreetMap (OSM),只需添加以下代码行,
var osm = new OpenLayers.Layer.OSM();
map.addLayer(osm);
虽然我不明白,为什么需要创建一个 OpenStreetMap 服务器呢?
You don't need to create an OpenStreetMap server by your own.
If you want to display your custom layer on a map then use google
or openstreetmap
as a base layer and display your layer (comes from shape file) on the map.
您可以使用gipong/shp2geojson:首先,将 shp 文件转换为 geojson 数据,然后将数据添加到地图中
var map = new ol.Map({
layers: [
new ol.layer.Tile({
source: new ol.source.OSM()
})
],
target: 'map',
view: new ol.View({
center: [0, 0],
zoom: 5
})
});
loadshp({
url: 'demo/10tnvillage.zip',
encoding: 'big5',
EPSG: 3826
}, function(data) {
var feature = new ol.format.GeoJSON().readFeatures(data, {
featureProjection: 'EPSG:3857'
});
var layer = new ol.layer.Vector({
source: new ol.source.Vector({
features: feature
})
});
map.addLayer(layer);
var extent = layer.getSource().getExtent();
map.getView().fit(extent, map.getSize());
});