Importing KML file to geofences sets ID as Name.
SYMPTOM
You import a KML file to GpsGate, but the names are not right. Instead of names, you get numbers (ID).
CAUSE
The KML file has no Name tags that GpsGate can recognize.
SOLUTION
Use a KML editor and make sure any of the following tags are available.
<Placemark>
<name>My Name</name>
.....
</Placemark>
<Placemark>
<ExtendedData>
<Data name='Name'>
<value>My Name</value>
</Data>
</ExtendedData>
....
</Placemark>
<Placemark id="My Name">
...
</Placemark>