maps: add extra marker icons (#57514) #118

Merged
fpeters merged 1 commits from wip/57514-marker-icons into main 2023-06-23 08:07:38 +02:00
2 changed files with 87 additions and 19 deletions

View File

@ -44,39 +44,73 @@ KIND = [
ICONS = [
('ambulance', _('Ambulance')),
('asterisk', _('Asterisk')),
('bed', _('Bed')),
('beer', _('Beer')),
('bell', _('Bell')),
('bicycle', _('Bicycle')),
('binoculars', _('Binoculars')),
('book', _('Book')),
('briefcase', _('Briefcase')),
('broken_chain', _('Broken chain')),
('building', _('Building')),
('bullhorn', _('Bullhorn')),
('bus', _('Bus')),
('car', _('Car')),
('checkmark', _('Checkmark')),
('child', _('Child')),
('cloud', _('Cloud')),
('coffee', _('Coffee')),
('comments', _('Comments')),
('cube', _('Cube')),
('cutlery', _('Cutlery')),
('desktop', _('Desktop computer')),
('drop', _('Drop')),
('eye', _('Eye')),
('female', _('Female')),
('fire_extinguisher', _('Fire extinguisher')),
('flag', _('Flag')),
('gavel', _('Gavel')),
('gift', _('Gift')),
('glass', _('Glass')),
('group', _('Group of persons')),
('heartbeat', _('Heartbeat')),
('heart', _('Heart')),
('hospital', _('Hospital')),
('house', _('House')),
('key', _('Key')),
('leaf', _('Leaf')),
('life_ring', _('Life ring')),
('lightbulb', _('Lightbulb')),
('male', _('Male')),
('map_signs', _('Map signs')),
('medkit', _('Medkit')),
('microphone', _('Microphone')),
('mobile', _('Mobile phone')),
('motorcycle', _('Motorcycle')),
('music', _('Music')),
('paint_brush', _('Paint brush')),
('paw', _('Paw')),
('phone', _('Phone')),
('recycle', _('Recycle')),
('road', _('Road')),
('ship', _('Ship')),
('shopping_bag', _('Shopping bag')),
('shopping_cart', _('Shopping cart')),
('shower', _('Shower')),
('soccer_ball', _('Foot ball')),
('star', _('Star')),
('subway', _('Subway')),
('taxi', _('Taxi')),
('ticket', _('Ticket')),
('train', _('Train')),
('trash', _('Trash')),
('tree', _('Tree')),
('truck', _('Truck')),
('university', _('University')),
('video_camera', _('Video camera')),
('warning', _('Warning')),
('wheelchair', _('Wheelchair')),
('wifi', _('Wifi')),
]
MARKER_SIZES = [

View File

@ -4,41 +4,75 @@ $small_marker_width: 20px;
$marker_icons: (
(ambulance, "\f0f9"),
(asterisk, "\f069"),
(bed, "\f236"),
(beer, "\f0fc"),
(bell, "\f0a2"), // bell-o
(bicycle, "\f206"),
(binoculars, "\f1e5"),
(bolt, "\f0e7"),
(book, "\f02d"),
(briefcase, "\f0b1"),
(broken_chain, "\f127"), // chain-broken
(building, "\f0f7"),
(bullhorn, "\f0a1"),
(bus, "\f207"),
(car, "\f1b9"),
(hospital, "\f0f8"),
(checkmark, "\f00c"), // check
(child, "\f1ae"),
(cloud, "\f0c2"),
(coffee, "\f0f4"),
(comments, "\f086"),
(cube, "\f1b2"),
(cutlery, "\f0f5"),
(desktop, "\f108"),
(drop, "\f043"), // tint
(eye, "\f06e"),
(female, "\f182"),
(fire_extinguisher, "\f134"),
(flag, "\f024"),
(gavel, "\f0e3"),
(gift, "\f06b"),
(glass, "\f000"),
(group, "\f0c0"),
(heartbeat, "\f21e"),
(heart, "\f004"),
(hospital, "\f0fd"), // h-square
(house, "\f015"),
(key, "\f084"),
(leaf, "\f06c"),
(life_ring, "\f1cd"),
(lightbulb, "\f0eb"), // lightbulb-o
(male, "\f183"),
(map_signs, "\f277"),
(medkit, "\f0fa"),
(microphone, "\f130"),
(mobile, "\f10b"),
(motorcycle, "\f21c"),
(music, "\f001"),
(paint_brush, "\f1fc"),
(paw, "\f1b0"),
(phone, "\f095"),
(recycle, "\f1b8"),
(road, "\f018"),
(ship, "\f21a"),
(shopping_bag, "\f290"),
(shopping_cart, "\f07a"),
(shower, "\f2cc"),
(soccer_ball, "\f1e3"), // futbol-o
(star, "\f005"),
(subway, "\f239"),
(taxi, "\f1ba"),
(ticket, "\f145"),
(train, "\f238"),
(trash, "\f1f8"),
(tree, "\f1bb"),
(truck, "\f0d1"),
(university, "\f19c"),
(wheelchair, "\f193"),
(drop, "\f043"), // tint
(bolt, "\f0e7"),
(broken_chain, "\f127"), // chain-broken
(bell, "\f0a2"), // bell-o
(eye, "\f06e"),
(gavel, "\f0e3"),
(asterisk, "\f069"),
(star, "\f005"),
(checkmark, "\f00c"), // check
(paw, "\f1b0"),
(lightbulb, "\f0eb"), // lightbulb-o
(cube, "\f1b2"),
(paint_brush, "\f1fc"),
(tree, "\f1bb"),
(road, "\f018"),
(video_camera, "\f03d"),
(warning, "\f071"), // exclamation-triangle
(map_signs, "\f277"),
(flag, "\f024"),
(wheelchair, "\f193"),
(wifi, "\f1eb"),
);
div.combo-cell-map.leaflet-container {