Esri Default Marker Repack -

const markerSymbol = type: "simple-marker", style: "circle", color: [227, 47, 47], // ESRI red size: 12, outline: color: [255, 255, 255], width: 2 ;

// ESRI default marker (red pin) const point = new Point( longitude: -118.2437, latitude: 34.0522 ); esri default marker

require(["esri/Map", "esri/views/MapView", "esri/Graphic", "esri/geometry/Point"], function(Map, MapView, Graphic, Point) const map = new Map( basemap: "streets-navigation-vector" ); const markerSymbol = type: "simple-marker"

This gives you the look used across their web mapping platforms. // ESRI red size: 12

Scroll to Top