|
|
Frequently Asked Questions
How to add a map to the offer?
You can add a map to the offer by uploading with it a kml file and optionaly introduce the latitude, longitude and altitude. The kml file format is for creating map data.You can create kml files using Google Earth.
The main view of your map will be where you enter the latitude, longitude and zoom level coordinates in the form. If you do not enter a coordinate the default will be used for that coordinate. The default values for latitude, longitude and zoom level are 33.137551,-50.625 and 2.
Example 1 -> KML File having Placemark Point
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.2">
<Document>
<name>KmlFile</name>
<Placemark>
<name>Point</name>
<description>
<![CDATA[
<h1>CDATA Tags are useful!</h1>
<p>Description</p>
]]>
</description>
<LookAt>
<longitude>-122.365840</longitude>
<latitude>37.819461</latitude>
<altitude>0</altitude>
<range>269145.9752084647</range>
<tilt>0</tilt>
<heading>-73.16934175358253</heading>
</LookAt>
<Point>
<coordinates>-122.366840,37.819461,30</coordinates>
</Point>
</Placemark>
</Document>
</kml>
|
Example 2 -> KML File having Polygon Region and Placemark Point
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.2">
<Document>
<name>KmlFile</name>
<description>
<![CDATA[
<h1>CDATA Tags are useful!</h1>
<p>Description</p>
]]>
</description>
<Style id="style">
<PolyStyle>
<color>26ff0000</color>
</PolyStyle>
</Style>
<Placemark>
<name>Shape</name>
<description>
<![CDATA[
<h1>CDATA Tags are useful!</h1>
<p>Description</p>
]]>
</description>
<styleUrl>#style</styleUrl>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>
-122.36705,37.819321,0
-122.366753,37.819016,0
-122.367142,37.818867,0
-122.367477,37.819115,0
-122.36705,37.819321,0
</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark>
<name>Point</name>
<description>
<![CDATA[
<h1>CDATA Tags are useful!</h1>
<p>Description</p>
]]>
</description>
<LookAt>
<longitude>-122.365840</longitude>
<latitude>37.819461</latitude>
<altitude>0</altitude>
<range>269145.9752084647</range>
<tilt>0</tilt>
<heading>-73.16934175358253</heading>
</LookAt>
<Point>
<coordinates>-122.366840,37.819461,30</coordinates>
</Point>
</Placemark>
</Document>
</kml>
|
|
|