All Projects → pointhi → Leaflet Color Markers

pointhi / Leaflet Color Markers

Licence: bsd-2-clause
color variations of the standard leaflet marker

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Leaflet Color Markers

leaflet-tag-filter-button
Adds tag filter control for layers (marker, geojson features etc.) to LeafLet.
Stars: ✭ 48 (-86.78%)
Mutual labels:  leaflet, markers
Leaflet.motion
A simple tool to animate polylines and polygons in different way
Stars: ✭ 76 (-79.06%)
Mutual labels:  leaflet, markers
Prunecluster
Fast and realtime marker clustering for Leaflet
Stars: ✭ 473 (+30.3%)
Mutual labels:  leaflet, markers
vue2-leaflet-rotatedmarker
rotated marker plugin extension for vue2-leaflet package
Stars: ✭ 17 (-95.32%)
Mutual labels:  leaflet, markers
Leaflet Ant Path
🌿🐜 Creates a leaflet polyline with a 'ant-path' animated flux
Stars: ✭ 296 (-18.46%)
Mutual labels:  leaflet
gatsby-starter-leaflet
🍃 A Gatsby starter with Leafet to quickly build React apps with a map!
Stars: ✭ 108 (-70.25%)
Mutual labels:  leaflet
dash leaflet
Leaflet component for dash. Illustration of error encountered during python build.
Stars: ✭ 21 (-94.21%)
Mutual labels:  leaflet
kirby-locator
A simple map & geolocation field, built on top of open-source services and Mapbox. Kirby 3 only.
Stars: ✭ 83 (-77.13%)
Mutual labels:  leaflet
Mapview
Interactive viewing of spatial data in R
Stars: ✭ 341 (-6.06%)
Mutual labels:  leaflet
Leaflet.timedimension
Add time dimension capabilities on a Leaflet map.
Stars: ✭ 329 (-9.37%)
Mutual labels:  leaflet
Leaflet.pixioverlay
Bring Pixi.js power to Leaflet maps
Stars: ✭ 264 (-27.27%)
Mutual labels:  leaflet
django-leaflet-admin-list
The Django Leaflet Admin List package provides an admin list view featured by the map and bounding box filter for the geo-based data of the GeoDjango.
Stars: ✭ 28 (-92.29%)
Mutual labels:  leaflet
Leaflet.markercluster
Marker Clustering plugin for Leaflet
Stars: ✭ 3,305 (+810.47%)
Mutual labels:  leaflet
Leaflet.MarkerCluster.List
a subplugin for the Leaflet.MarkerCluster to display clustered child elements in the list
Stars: ✭ 14 (-96.14%)
Mutual labels:  leaflet
Gdal2tiles Leaflet
Generate raster image tiles for use with leaflet.
Stars: ✭ 338 (-6.89%)
Mutual labels:  leaflet
leaflet.tilelayer.gloperations
Custom Leaflet TileLayer using WebGL to do operations on and colorize floating-point pixels
Stars: ✭ 15 (-95.87%)
Mutual labels:  leaflet
leaflet-rs
A wasm-bindgen wrapper for Leaflet.js
Stars: ✭ 19 (-94.77%)
Mutual labels:  leaflet
Ui Leaflet
AngularJS directive to embed an interact with maps managed by Leaflet library
Stars: ✭ 315 (-13.22%)
Mutual labels:  leaflet
is-osm-uptodate
Find outdated nodes in OpenStreetMap
Stars: ✭ 16 (-95.59%)
Mutual labels:  leaflet
Leaflet-active-area
A Leaflet plugin to center the map not in the center of the map but inside a DIV. Useful for responsive design.
Stars: ✭ 99 (-72.73%)
Mutual labels:  leaflet

leaflet-color-markers

color variations of the standard leaflet markers:

Color Marker 2x Marker Color Inside Color Outside
Blue Marker Blue 2x Marker Blue #2A81CB #3274A3
Gold Marker Gold 2x Marker Gold #FFD326 #C1A32D
Red Marker Red 2x Marker Red #CB2B3E #982E40
Green Marker Green 2x Marker Green #2AAD27 #31882A
Orange Marker Orange 2x Marker Orange #CB8427 #98652E
Yellow Marker Yellow 2x Marker Yellow #CAC428 #988F2E
Violet Marker Violet 2x Marker Violet #9C2BCB #742E98
Grey Marker Grey 2x Marker Grey #7B7B7B #6B6B6B
Black Marker Black 2x Marker Black #3D3D3D #313131

Usage

var greenIcon = new L.Icon({
  iconUrl: 'https://raw.githubusercontent.com/pointhi/leaflet-color-markers/master/img/marker-icon-2x-green.png',
  shadowUrl: 'https://cdnjs.cloudflare.com/ajax/libs/leaflet/0.7.7/images/marker-shadow.png',
  iconSize: [25, 41],
  iconAnchor: [12, 41],
  popupAnchor: [1, -34],
  shadowSize: [41, 41]
});

L.marker([51.5, -0.09], {icon: greenIcon}).addTo(map);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].