Sygic doesn’t support POI and routes in standard KML format.
To load POI to Sygic from google mymaps you have to
1. Export layers to KML format (or KMZ format – its just archive with KML plus icons for places). KML is just XML format
2. Process KML file with XSLT transfomation
<!-- longitude | latitude | name | address | phone | fax | web | email | short description | long description -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:df="http://www.opengis.net/kml/2.2">
<xsl:output method="text" encoding="utf-8" />
<xsl:param name="delim" select="'|'" />
<xsl:param name="quote" select="'"'" />
<xsl:param name="break" select="'
'" />
<xsl:template match="/">
<xsl:apply-templates select="df:kml/df:Document/df:Folder/df:Placemark" />
</xsl:template>
<xsl:template match="df:Placemark">
<xsl:value-of select="substring-before(substring-after(normalize-space(df:Point/df:coordinates), ','), ',')"/>|<xsl:value-of select="substring-before(normalize-space(df:Point/df:coordinates), ',')"/>|<xsl:value-of select="normalize-space(df:name)"/>|||||||<xsl:value-of select="normalize-space(df:description)"/>
<xsl:if test="following-sibling::*">
<xsl:value-of select="$break" />
</xsl:if>
</xsl:template>
</xsl:stylesheet>
I did it with Notepad++ text editor with XML Tools plugin
Next steps was taken from Sygic site
3. Download CSV to RUPI converter
4. Process file from step 2 with converter
5. Copy created upi/rupi files to Sygic/maps/import folder (create import folder if you don’t have such)
Unfortunately Sygic support told me, that they have no plans to support KML/KMZ format like free MapsMe do.
1 комментарий:
For Sygic 17.1 -- POI were successfully imported to sygic, but didn't be shown on map, because switch in settings is constantly resetting to OFF
Отправить комментарий