List of all Google Map Icons, useful for SNOW map Pages
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-08-2014 11:37 AM
Hey guys I've found this list of all Icons used by Google maps, this could be useful when customer wants to display incidents in a map and difference them by some category or Impact.
I hope this list could be useful.
- Labels:
-
User Interface (UI)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-08-2014 11:48 AM
Neat! Thanks for sharing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-08-2014 01:04 PM
if you're looking to add some additional flare the google developers site references this website where you can download marker/icons to use on your maps
Map Icons Collection | Google Maps Icons, Map Markers, Free POI Icons, GIS Symbols
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-08-2014 01:09 PM
Woah! there are tons of it, but are those Icons needs to be downloaded ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-08-2014 02:14 PM
This could be useful too, In order to display those icons that Robert Mitchell mentioned before, In your map page, do the following:
After download your icons and unpack the zip
- Attach the Icon your map page. (Click on the paper clip Icon or just Drag to the map page form.)
- Click on [View] link, at the top bar where your attachments are displayed.
- Once the pop up windows displays your attached image copy the url and add it to your code.
- like this, into a Img tag inside the src="" value
item.marker_label = "<img src='https://[your_service-now_instnace]/sys_attachment.do?sysparm_referring_url=tear_off&view=true&sys_i... id]' border='no' >";
And Voilà !
Example code:
var gr = new GlideRecord("incident");
gr.addQuery('priority', '1');
gr.addActiveQuery();
gr.query();
while (gr.next()) {
var item = map.addItem(gr);
item.latitude = gr.location.latitude;
item.longitude = gr.location.longitude;
item.dialog_title = gr.getDisplayValue();
item.marker_label = "<img src='https://[servicenowinstance]/sys_attachment.do?sysparm_referring_url=tear_off&view=true&sys_id=[sys_... attachment]' border='no' >";
}