Esri Default Marker Verified May 2026
const graphic = new Graphic( geometry: point, symbol: markerSymbol, attributes: name: "Sample Location" );
// ESRI default marker (red pin) const point = new Point( longitude: -118.2437, latitude: 34.0522 ); esri default marker
Here’s a clean feature, modeled after the classic red pin used in ArcGIS Online, ArcGIS API for JavaScript, and many ESRI maps. Feature Object (GeoJSON format) "type": "Feature", "geometry": "type": "Point", "coordinates": [-118.2437, 34.0522] , "properties": "title": "ESRI Default Location", "description": "Example point using ESRI default marker style", "marker-symbol": "marker", "marker-color": "#E32F2F", "marker-size": "medium" const graphic = new Graphic( geometry: point, symbol:
This gives you the look used across their web mapping platforms. attributes: name: "Sample Location" )
const view = new MapView( container: "viewDiv", map: map, center: [-118.2437, 34.0522], zoom: 13 );