Using local OSM server for QML Map
-
wrote on 2 Feb 2023, 14:18 last edited by Mihaill 2 Feb 2023, 14:27
Hi!
I install OSM local server.
On this url I can get tile:http://tile.your-domain.com/osm/5/5/6.png
But how I can use this local osm server in QML Plagin?
It is not work:Plugin { id: mapPlugin name: "osm" PluginParameter { name: "osm.mapping.custom.host" value: "http://tile.your-domain.com/osm" } }
-
wrote on 2 Feb 2023, 14:34 last edited by
It is work
Plugin { id: mapPlugin name: "osm" PluginParameter { name: "osm.mapping.providersrepository.disabled"; value: true } PluginParameter { name: "osm.mapping.host"; value: "http://tile.your-domain.com/osm/" } }
1/2