skip to Main Content

Visual Studio Code – syncfusion markers not showing up on demo code

I am currently testing the openstreetmap integration uing syncfusion Looking at their documentation => https://blazor.syncfusion.com/documentation/maps/providers/openstreetmap I tryed running this code: @using Syncfusion.Blazor.Maps <SfMaps> <MapsZoomSettings ZoomFactor="4"></MapsZoomSettings> <MapsCenterPosition Latitude="29.394708" Longitude="-94.954653"></MapsCenterPosition> <MapsLayers> <MapsLayer UrlTemplate="https://tile.openstreetmap.org/level/tileX/tileY.png" TValue="string"> @* Add marker *@ <MapsMarkerSettings> <MapsMarker Visible="true" Height="25"…

VIEW QUESTION

Prepopulating PostGIS with OSM data works with Docker Desktop, but not with Azure pipeline

When I build the Dockerfile below by running the command manually at a Windows notebook docker build -f Dockerfile --no-cache --tag my-postgis:16-3.4 --build-arg DOWNLOAD_URLS="https://download.geofabrik.de/europe/germany/berlin-latest.osm.pbf https://download.geofabrik.de/europe/germany/hamburg-latest.osm.pbf" --build-arg OSM_PASSWORD=osm_password --build-arg POSTGIS_TAG=16-3.4 . then it works as expected and the prefilled PostgreSQL database…

VIEW QUESTION

How to implement Javascript Leaflet demo code to show a simple map and point? (blank page returned)

I try to just imitate the simplest example code of Leaflet (https://leafletjs.com/index.html) as follows. But somehow I only got the blank page. Can somebody spot what is wrong? Many thanks! <html> <head> <title>Map view with Leaflet</title> <link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha256-p4NxAoJBhIIN+hmNHrzRCf9tD/miZyoHS5obTRR9BMY="…

VIEW QUESTION
Back To Top
Search