Я пытаюсь создать XSLT для XML ниже.Цель состоит в том, чтобы создать следующий URL.Я пытаюсь выяснить, как пройти через XSLT, чтобы создать широту, долготу |после того, как достигнут конец, и завершите URL-адрес & size = 300x300 & maptype = hybrid & sensor = false "/>.
<img alt="" src="http://maps.googleapis.com/maps/api/staticmap?
path=color:0x0000ff|weight:5|42.312620297384676,-70.95182336425782
|42.31230294498018,-70.95255292510987
&size=300x300&maptype=hybrid&sensor=false" />
Может быть много параметров отметки времени, но у всех будет значение типа"gps", "pause", "resume" или "manual". Они всегда начинаются с типа "start" и заканчиваются типом "end".
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<root type="object">
<path type="array">
<item type="object">
<timestamp type="number">0</timestamp>
<altitude type="number">274.1666666666667</altitude>
<longitude type="number">-84.387467</longitude>
<latitude type="number">33.877038</latitude>
<type type="string">start</type>
</item>
<item type="object">
<timestamp type="number">3548.7729999999997</timestamp>
<altitude type="number">269.2857142857143</altitude>
<longitude type="number">-84.387616</longitude>
<latitude type="number">33.876494</latitude>
<type type="string">manual</type>
</item>
<item type="object">
<timestamp type="number">3600</timestamp>
<altitude type="number">270.8333333333333</altitude>
<longitude type="number">-84.387498</longitude>
<latitude type="number">33.877011</latitude>
<type type="string">end</type>
</item>
</path>
<calories type="array">
</calories>
<total_calories type="number">259</total_calories>
</root>
Результат будетbe ..
http://maps.googleapis.com/maps/api/staticmap?path=color:0x0000ff|weight:5|33.877038,-84.387467|33.876494,-84.387616|33.877011,-84.387498&size=300x300&maptype=hybrid&sensor=false
Любая помощь будет оценена.