1
我想在地圖查看器上繪製圓形,並仔細搜索程序員開發人員指南。我的Json文件是這樣創建的。如何使用Orion Context Broker在地圖查看器上繪製圓形
(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地圖查看器中的循環?如果有人能爲我提供關於這些步驟的詳細信息,那將會很棒。
「fiware-poi」標籤似乎無關緊要。這個問題似乎不是關於FIWARE POI數據提供程序通用啓動器。 –