IN THIS ARTICLE
Basemaps in PIX4Dreact
Change a basemap in PIX4Dreact
Use a custom basemap in PIX4Dreact
Supported arguments for a custom basemap in PIX4Dreact
To create a locally hosted tile web map service of an orthomosaic using python and QGIS
To add a custom Mapbox layer
Basemaps in PIX4Dreact
Basemaps serve as a reference map on which projects are overlaid. PIX4Dreact provides several options for these maps. The Standard basemap option is a full global basemap with either Street or Satellite content provided by Mapbox. A custom basemap option is available to display customized content utilizing a tiled web map service. This service can be hosted locally or online.
Change a basemap in a PIX4Dreact project
- Open a project in PIX4Dreact.
- Click on Select basemap .
- Select Custom, Satellite, Street, or None.
To add a custom basemap in PIX4Dreact
To add a custom basemap provider:
- In the Dashboard screen, click SETTINGS .
- In the APP SETTINGS section, click Basemap.
- Select Your custom basemap.
- Type or paste the URL for the map service.
- Create a new project in PIX4Dreact.
- Click on Select basemap .
- Click on Custom.
Supported arguments for a custom basemap in PIX4Dreact
The table below describes the arguments supported on PIX4Dreact:
{x}
X position of tile
{bbox4326_latlon}
{bbox4326_lonlat}
{bbox3857}
To create a locally hosted tile web map service of an orthomosaic using python and QGIS
- Create a local server using python:
- Create a dedicated folder on the windows machine (e.g. “Local_Basemap”).
- Open a windows console and navigate to the folder “Local_Basemap”.
- Execute the following command: "C:\Program Files\QGIS 3.16\apps\Python37\python" -m http.server (check that the path to where python is installed is correct).
- The console will show the following message: Serving HTTP on 0.0.0.0 port 8000 (http://0.0.0.0:8000/) ... The URL of the local server will be http://localhost:8000/
- Generate XYZ tiles from the orthomosaic that you want to use.
- Open QGIS and load the orthomosaic.
- Click Processing> Toolbox> Raster tools>Generate XYZ tiles (Directory)
- Fill in the following parameters as follows:
- Extent: the orthomosaic.
- Zoom level range: it depends on the ortho size, but 12-19 should be ok for all cases.
- Tile format: JPG.
- Output directory: save into the folder “Local_Basemap”.
- Output html: give a name and save it in the “Local_Basemap” folder (to test if the tiles were created correctly).
- Open PIX4Dreact and add the following URL http://localhost:8000/{z}/{x}/{y}.jpg in the custom basemap section.
To add a custom Mapbox layer
It is possible to create custom basemaps in Mapbox that can be imported into PIX4Dreact as a tile web map service.
- In Mapbox Studio, navigate to Share & Develop.
- Under Developer resources, select Third party.
- PIX4Dreact will support either Carto or Fulcrum formats.
- Copy the Integration URL.
- Paste into Your custom basemap in the APP SETTINGS of PIX4Dreact.