我是打开图层地图的新手。我正在尝试通过从 geojson 文件中读取标签来在标记上显示标签。
这是我的 geojson 文件的格式:
{
"type": "FeatureCollection",
"features": [
{"type":"Feature","properties":{"label":"1"}, "geometry":{"type":"Point", "coordinates":[-81, 42]}},
]
}
我尝试使用属性替换来显示标签。这是代码:
var vector_style = new OpenLayers.Style({
'fillColor': '#669933',
'fillOpacity': .8,
'strokeColor': '#aaee77',
'strokeWidth': 3,
'pointRadius': 8,
'label': '${label}'
});
但是,除了标签之外的所有其他属性都会显示。你能告诉我如何显示geojson文件中的标签吗?