==== How to create generated icons ==== \\ ---- GPX Viewer supports generating custom color and text icons for waypoints defined in gpx or kml files. In gpx files you can define in tag tag, then tag into which you need to add tag. These tags are not included in the gpx schema, so we are providing schema for this on this url: https://www.vecturagames.com/xmlschemas/GpxWaypointExtensionv1.xsd. Example: ... ... ... Inside and tags instead of ... you can write functions: * **color_marker(color)** - instead of color you need to write the color in RGB format, for example #aab51c * **text_marker(string)** - instead of string you need to write a maximum of three characters and a minimum one character, for example 100 Example for **color_marker(color)**: ... color_marker(#aab51c) ... Result icon: [[https://docs.vecturagames.com/gpxviewer/lib/exe/fetch.php?cache=&media=docs:faq:how_to:icon_marker.png|{{ docs:faq:how_to:icon_marker.png }}]] Example for **text_marker(string)**: ... text_marker(100) ... Result icon: [[https://docs.vecturagames.com/gpxviewer/lib/exe/fetch.php?cache=&media=docs:faq:how_to:text_marker.png|{{ docs:faq:how_to:text_marker.png }}]]