我想在地图查看器上画一个圆圈,我仔细搜索了程序员开发者指南。我的Json文件是这样创建的。
(curl localhost:1026/v1/queryContext -s -S --header 'Content-Type: application/json' --header 'Accept: application/json' -d @- | python -mjson.tool) <<EOF
{
"entities": [
{
"type": "City",
"isPattern": "true",
"id": ".*"
}
],
"restriction": {
"scopes": [
{
"type" : "FIWARE::Location",
"value" : {
"circle": {
"centerLatitude": "43.659590",
"centerLongitude": "-79.397077",
"radius": "15000"
}
}
}
]
}
}
EOF
我想知道如何使用ngsi源操作符和ngsi实体到POI在Fiware上的地图查看器上绘制圆圈?如果有人可以向我提供有关步骤的一些细节,那就太好了。