Skip to content

Instantly share code, notes, and snippets.

@nyem69
Last active February 1, 2017 20:04
Show Gist options
  • Save nyem69/c794718733e0c6435c9748e2e0abdb1c to your computer and use it in GitHub Desktop.
Save nyem69/c794718733e0c6435c9748e2e0abdb1c to your computer and use it in GitHub Desktop.
XML markers to circle (D3, Leaflet, Turf, Stamen)
license: mit
<!DOCTYPE html>
<meta charset="utf-8">
<html>
<head>
<title>XML markers to circle (D3, Leaflet, Turf, Stamen)</title>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.2/leaflet.css" />
<script src="//cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/leaflet/1.0.2/leaflet.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/Turf.js/3.0.14/turf.min.js"></script>
<script src="//maps.stamen.com/js/tile.stamen.js?v1.3.0"></script>
</head>
<body>
<script type="text/javascript">
d3.xml('markers.xml', function(err, xml) {
if (err) throw err;
// xml sample
var xmlsample = [
'<marker type_facilities="1" id="TPZ64" strName="SKUDAI ENTRY" decLocation="14.80" decLong="103.646355" decLat="1.581686" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />',
'<RSA128_6 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />',
];
var hash={};
// find fields from xml sample
var fields = {};
xmlsample.forEach(function(sample) {
var str = sample.replace(/^<\w+\s+/,'').replace(/\s*\/\>$/,'').split(/\" /).forEach(function(k){
k = k.replace(/=\".*$/,'');
fields[k]=1;
});
});
// process loaded xml
var xmldata = [].map.call(xml.querySelectorAll("marker"), function(d) {
var k = {};
for (var t in fields) {
k[t] = d.getAttribute(t);
}
return k;
});
features = xmldata.filter(function(d){ return +d['type_facilities']==1 }).map(function(d){
return turf.point([+d['decLong'],+d['decLat']],d);
});
var bbox = turf.bbox(turf.featureCollection(features));
var midx = bbox[0]+(bbox[2]-bbox[0])/2,
midy = bbox[1]+(bbox[3]-bbox[1])/2;
d3.select('body').append('div').attr('id','map')
.style({
width: '960px',
height: '600px'
});
// leaflet
var map = L.map('map').setView([midy, midx], 7);
// stamen layer
var layer = new L.StamenTileLayer("toner-lite");
map.addLayer(layer);
// http://jsfiddle.net/cvs5d7o9/2/
function projectPointD3(x, y) {
// new L.LatLng creates a new lat/lng object with "lat" and "lng" as
// keys. Topojson uses the (lng,lat) ordering so the x and y need to be
// reversed. Equivalent to [y,x], or {lon:x, lat:y}
var pointLatLng = new L.LatLng(y, x);
// latLngToLayerPoint takes the lat/lng point and returns the x and y
// coordinate for the point on the screen.
var point = map.latLngToLayerPoint(pointLatLng);
this.stream.point(point.x, point.y);
}
// Does plain old projecting from lat/lng to
// an x/y coordinate
function projectPoint(lat, lng) {
var pointLatLng = new L.LatLng(lat, lng);
var point = map.latLngToLayerPoint(pointLatLng);
return point
}
var transform = d3.geo.transform({point: projectPointD3}),
path = d3.geo.path().projection(transform);
//----------------
// add circle
//----------------
var svg = d3.select(map.getPanes().overlayPane).append("svg").style('overflow','visible'),
g = svg.append("g").attr("class", "leaflet-zoom-hide");
var feature = g.selectAll("circle")
.data(features, function(d){ return d.properties.id })
.enter().append("circle")
.attr({
cx: function (d) {
return projectPoint(d.properties['decLat'], d.properties['decLong']).x;
},
cy: function (d) {
return projectPoint(d.properties['decLat'], d.properties['decLong']).y;
},
r:7,
fill:'lime'
})
.on({
mouseover: function(d){
d3.select(this).transition().attr({r:15, fill:'red'});
},
mouseout: function(d){
d3.select(this).transition().attr({r:7, fill:'lime'});
}
});
// viewreset no longer works on leaflet v1.*
map.on("zoom", resetView);
resetView();
function resetView() {
feature.attr({
cx: function (d) {
return projectPoint(d.properties['decLat'], d.properties['decLong']).x;
},
cy: function (d) {
return projectPoint(d.properties['decLat'], d.properties['decLong']).y;
},
});
}
});
</script>
</body>
</html>
<markers><marker type_facilities="1" id="TPZ64" strName="SKUDAI ENTRY" decLocation="14.80" decLong="103.646355" decLat="1.581686" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ64_1 description="Touch n Go Reload Lane" strIcon="Touch n Go Reload Lane.png" intFacilityType="9" iconBrand="" strPicture="" />
<marker type_facilities="7" id="RSA137" strName="SENAI" decLocation="19.25" decLong="103.614777" decLat="1.607868" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ63" strName="SENAI NORTH" decLocation="19.25" decLong="103.614082" decLat="1.599384" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ62" strName="KULAI" decLocation="27.81" decLong="103.555435" decLat="1.649937" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="5" id="RSA135" strName="KULAI NORTH" decLocation="33.10" decLong="103.506393" decLat="1.657349" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ61" strName="SEDENAK" decLocation="41.35" decLong="103.448936" decLat="1.710198" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="5" id="RSA132" strName="SPG. RENGGAM NORTH" decLocation="54.20" decLong="103.352264" decLat="1.765108" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ60" strName="SPG. RENGGAM" decLocation="58.78" decLong="103.323349" decLat="1.795825" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ59" strName="MACHAP" decLocation="72.69" decLong="103.242004" decLat="1.884159" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="6" id="RSA128" strName="MACHAP NORTH" decLocation="74.60" decLong="103.224426" decLat="1.896318" idhighway="1" type_signature="3" type_facility="11" type_cctv="1" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="image_facilities_16072014193045_1.jpg" iconBrand="" />
<RSA128_6 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<RSA128_6 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA128_6 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA128_6 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA128_6 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA128_6 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA128_6 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<marker type_facilities="4" id="RSA128" strName="MACHAP NORTH" decLocation="74.60" decLong="103.224426" decLat="1.896318" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA128_4 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<RSA128_4 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA128_4 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA128_4 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA128_4 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA128_4 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA128_4 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ58" strName="AYER HITAM" decLocation="80.22" decLong="103.186134" decLat="1.930415" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ58_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<TPZ58_1 description="ATM" strIcon="" intFacilityType="2" iconBrand="SHELL.png" strPicture="" />
<TPZ58_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ58_1 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<TPZ58_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ58_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ58_1 description="Touch n Go Reload Lane" strIcon="Touch n Go Reload Lane.png" intFacilityType="9" iconBrand="" strPicture="" />
<TPZ58_1 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<TPZ58_1 description="" strIcon="" intFacilityType="12" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ57" strName="YONG PENG SOUTH" decLocation="94.55" decLong="103.078484" decLat="1.998226" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ57_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="CALTEX.png" strPicture="" />
<TPZ57_1 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<TPZ57_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ57_1 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<TPZ57_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ57_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ57_1 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<TPZ57_1 description="" strIcon="" intFacilityType="12" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ56" strName="YONG PENG NORTH" decLocation="99.32" decLong="103.046234" decLat="2.002915" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="5" id="RSA120" strName="YONG PENG NORTH" decLocation="108.80" decLong="102.981232" decLat="2.065240" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ55" strName="PAGOH" decLocation="142.30" decLong="102.731087" decLat="2.130655" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="6" id="RSA117" strName="PAGOH NORTH" decLocation="146.60" decLong="102.699280" decLat="2.148154" idhighway="1" type_signature="3" type_facility="11" type_cctv="1" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="image_facilities_16072014193515_1.jpg" iconBrand="" />
<RSA117_6 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA117_6 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA117_6 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA117_6 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA117_6 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA117_6 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<marker type_facilities="4" id="RSA117" strName="PAGOH NORTH" decLocation="146.60" decLong="102.699280" decLat="2.148154" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA117_4 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA117_4 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA117_4 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA117_4 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA117_4 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA117_4 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ93" strName="BUKIT GAMBIR" decLocation="157.10" decLong="102.623138" decLat="2.194174" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="5" id="RSA116" strName="TANGKAK NORTH" decLocation="161.60" decLong="102.410194" decLat="2.284490" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ54" strName="TANGKAK" decLocation="169.20" decLong="102.533653" decLat="2.244955" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ53" strName="JASIN" decLocation="180.60" decLong="102.433739" decLat="2.263733" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ53_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<marker type_facilities="5" id="RSA111" strName="KG. BEMBAN NORTH" decLocation="185.30" decLong="102.397461" decLat="2.283929" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ52" strName="AYER KEROH" decLocation="195.40" decLong="102.310478" decLat="2.300183" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="6" id="RSA109" strName="AYER KEROH NORTH" decLocation="205.00" decLong="102.246521" decLat="2.363012" idhighway="1" type_signature="3" type_facility="11" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="image_facilities_16072014174239_1.jpg" iconBrand="" />
<RSA109_6 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA109_6 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA109_6 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA109_6 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA109_6 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA109_6 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<marker type_facilities="4" id="RSA109" strName="AYER KEROH NORTH" decLocation="205.00" decLong="102.246521" decLat="2.363012" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA109_4 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<RSA109_4 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA109_4 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA109_4 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA109_4 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA109_4 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA109_4 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<marker type_facilities="4" id="RSA182" strName="AYER KEROH OBR" decLocation="210.30" decLong="102.220940" decLat="2.398210" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA182_4 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="CALTEX.png" strPicture="" />
<RSA182_4 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA182_4 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA182_4 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA182_4 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA182_4 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<marker type_facilities="6" id="RSA182" strName="AYER KEROH OBR" decLocation="210.30" decLong="102.220940" decLat="2.398210" idhighway="1" type_signature="0" type_facility="0" type_cctv="1" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="image_facilities_11122013164929_1.png" iconBrand="" />
<RSA182_6 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="CALTEX.png" strPicture="" />
<RSA182_6 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA182_6 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA182_6 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA182_6 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA182_6 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ51" strName="SPG. AMPAT" decLocation="216.90" decLong="102.183823" decLat="2.446918" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="" id="" strName="" decLocation="224.30" decLong="" decLat="" idhighway="" type_signature="" type_facility="" type_cctv="" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="5" id="RSA105" strName="PEDAS LINGGI NORTH" decLocation="225.50" decLong="102.121063" decLat="2.466741" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA105_5 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<marker type_facilities="1" id="TPZ50" strName="PEDAS LINGGI" decLocation="239.70" decLong="102.044807" decLat="2.566710" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="5" id="RSA103" strName="SENAWANG NORTH" decLocation="248.40" decLong="101.998283" decLat="2.631053" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ49" strName="SENAWANG" decLocation="256.15" decLong="101.965698" decLat="2.685705" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ49_1 description="Touch n Go Reload Lane" strIcon="Touch n Go Reload Lane.png" intFacilityType="9" iconBrand="" strPicture="" />
<marker type_facilities="7" id="RSA100" strName="PORT DICKSON" decLocation="259.40" decLong="101.932472" decLat="2.688750" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ46" strName="SEREMBAN" decLocation="262.90" decLong="101.915977" decLat="2.714361" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ46_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<TPZ46_1 description="Touch n Go SPOT" strIcon="Touch n Go Spot.png" intFacilityType="10" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ95" strName="BANDAR AINSDALE" decLocation="267.70" decLong="101.881302" decLat="2.732469" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="4" id="RSA97" strName="SEREMBAN NORTH" decLocation="272.20" decLong="101.846291" decLat="2.757046" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA97_4 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<RSA97_4 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA97_4 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA97_4 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA97_4 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA97_4 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA97_4 description="Motel" strIcon="Motel.png" intFacilityType="7" iconBrand="" strPicture="" />
<RSA97_4 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<RSA97_4 description="" strIcon="" intFacilityType="12" iconBrand="" strPicture="" />
<marker type_facilities="6" id="RSA97" strName="SEREMBAN NORTH" decLocation="272.20" decLong="101.846291" decLat="2.757046" idhighway="1" type_signature="3" type_facility="11" type_cctv="1" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="image_facilities_16072014193013_1.jpg" iconBrand="" />
<RSA97_6 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<RSA97_6 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA97_6 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA97_6 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA97_6 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA97_6 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA97_6 description="Motel" strIcon="Motel.png" intFacilityType="7" iconBrand="" strPicture="" />
<RSA97_6 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<RSA97_6 description="" strIcon="" intFacilityType="12" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ45" strName="NILAI" decLocation="284.30" decLong="101.797668" decLat="2.833007" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ45_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="SHELL.png" strPicture="" />
<TPZ45_1 description="Touch n Go Reload Lane" strIcon="Touch n Go Reload Lane.png" intFacilityType="9" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ83" strName="KLIA" decLocation="30.80" decLong="101.660698" decLat="2.832297" idhighway="5" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="6" id="RSA156" strName="DENGKIL NORTH" decLocation="22.90" decLong="101.610130" decLat="2.908194" idhighway="5" type_signature="3" type_facility="11" type_cctv="1" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="image_facilities_16072014194128_1.jpg" iconBrand="" />
<RSA156_6 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="CALTEX.png" strPicture="" />
<RSA156_6 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA156_6 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA156_6 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA156_6 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA156_6 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ82" strName="PUTRAJAYA" decLocation="21.00" decLong="101.612915" decLat="2.924912" idhighway="5" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ82_1 description="Touch n Go Reload Lane" strIcon="Touch n Go Reload Lane.png" intFacilityType="9" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ81" strName="BANDAR SAUJANA PUTRA" decLocation="16.35" decLong="101.580032" decLat="2.955697" idhighway="5" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ80" strName="PUTRA HEIGHTS" decLocation="13.20" decLong="101.578636" decLat="2.995610" idhighway="5" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ79" strName="USJ" decLocation="9.00" decLong="101.579124" decLat="3.025489" idhighway="5" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="6" id="RSA183" strName="USJ OBR" decLocation="8.50" decLong="101.575851" decLat="3.025789" idhighway="5" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA183_6 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="CALTEX.png" strPicture="" />
<marker type_facilities="1" id="TPZ78" strName="SEAFIELD" decLocation="5.40" decLong="101.568375" decLat="3.053471" idhighway="5" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ78_1 description="Touch n Go Reload Lane" strIcon="Touch n Go Reload Lane.png" intFacilityType="9" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ77" strName="EBOR NORTH" decLocation="4.50" decLong="101.558754" decLat="3.057051" idhighway="5" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ70" strName="SUBANG" decLocation="13.95" decLong="101.590866" decLat="3.103019" idhighway="2" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ69" strName="DAMANSARA" decLocation="17.25" decLong="101.604065" decLat="3.133754" idhighway="2" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ68" strName="KOTA DAMANSARA" decLocation="19.75" decLong="101.588974" decLat="3.155552" idhighway="2" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="7" id="RSA138" strName="BKT. LANJAN" decLocation="22.00" decLong="101.599297" decLat="3.180367" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="6" id="RSA181" strName="SG BULOH OBR SB" decLocation="458.40" decLong="101.586327" decLat="3.188475" idhighway="1" type_signature="0" type_facility="0" type_cctv="1" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA181_6 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<RSA181_6 description="Parking" strIcon="Layby.png" intFacilityType="1" iconBrand="" strPicture="" />
<RSA181_6 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA181_6 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA181_6 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA181_6 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA181_6 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA181_6 description="" strIcon="" intFacilityType="12" iconBrand="" strPicture="" />
<marker type_facilities="4" id="RSA181" strName="SG BULOH OBR SB" decLocation="458.40" decLong="101.586327" decLat="3.188475" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA181_4 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<RSA181_4 description="Parking" strIcon="Layby.png" intFacilityType="1" iconBrand="" strPicture="" />
<RSA181_4 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA181_4 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA181_4 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA181_4 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA181_4 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA181_4 description="" strIcon="" intFacilityType="12" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ37" strName="SG. BULOH" decLocation="456.10" decLong="101.586121" decLat="3.201393" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ37_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="SHELL.png" strPicture="" />
<TPZ37_1 description="Touch n Go SPOT" strIcon="Touch n Go Spot.png" intFacilityType="10" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ36" strName="SG. BULOH HOSPITAL" decLocation="453.80" decLong="101.580666" decLat="3.222940" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ36_1 description="Touch n Go Reload Lane" strIcon="Touch n Go Reload Lane.png" intFacilityType="9" iconBrand="" strPicture="" />
<marker type_facilities="7" id="RSA76" strName="RAWANG SOUTH" decLocation="446.30" decLong="101.555931" decLat="3.279982" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ34" strName="RAWANG " decLocation="443.80" decLong="101.548607" decLat="3.304463" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="4" id="RSA74" strName="RAWANG NORTH" decLocation="440.00" decLong="101.558113" decLat="3.329748" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA74_4 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<RSA74_4 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA74_4 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA74_4 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA74_4 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA74_4 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA74_4 description="Motel" strIcon="Motel.png" intFacilityType="7" iconBrand="" strPicture="" />
<marker type_facilities="6" id="RSA74" strName="RAWANG NORTH" decLocation="440.00" decLong="101.558113" decLat="3.329748" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA74_6 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<RSA74_6 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA74_6 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA74_6 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA74_6 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA74_6 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA74_6 description="Motel" strIcon="Motel.png" intFacilityType="7" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ92" strName="SUNGAI BUAYA" decLocation="434.70" decLong="101.549950" decLat="3.371683" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ33" strName="BKT. BERUNTUNG" decLocation="428.40" decLong="101.553459" decLat="3.424303" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ33_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<TPZ33_1 description="Touch n Go SPOT" strIcon="Touch n Go Spot.png" intFacilityType="10" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ32" strName="BKT. TAGAR" decLocation="419.60" decLong="101.521942" decLat="3.494192" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ32_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="ESSO.png" strPicture="" />
<TPZ32_1 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<TPZ32_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ32_1 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<TPZ32_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ32_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ32_1 description="Touch n Go SPOT" strIcon="Touch n Go Spot.png" intFacilityType="10" iconBrand="" strPicture="" />
<TPZ32_1 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ31" strName="LEMBAH BERINGIN" decLocation="409.90" decLong="101.527588" decLat="3.573630" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ31_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="SHELL.png" strPicture="" />
<TPZ31_1 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<TPZ31_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ31_1 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<TPZ31_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ31_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ31_1 description="Motel" strIcon="Motel.png" intFacilityType="7" iconBrand="" strPicture="" />
<TPZ31_1 description="Touch n Go SPOT" strIcon="Touch n Go Spot.png" intFacilityType="10" iconBrand="" strPicture="" />
<TPZ31_1 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ30" strName="TANJUNG MALIM" decLocation="400.30" decLong="101.530212" decLat="3.655345" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ30_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="BHP.png" strPicture="" />
<TPZ30_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<TPZ30_1 description="Touch n Go Reload Lane" strIcon="Touch n Go Reload Lane.png" intFacilityType="9" iconBrand="" strPicture="" />
<marker type_facilities="5" id="RSA67" strName="TANJUNG MALIM NORTH" decLocation="396.40" decLong="101.500038" decLat="3.676884" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA67_5 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="SHELL.png" strPicture="" />
<marker type_facilities="1" id="TPZ29" strName="BEHRANG" decLocation="387.98" decLong="101.459351" decLat="3.739882" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ29_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<TPZ29_1 description="Touch n Go SPOT" strIcon="Touch n Go Spot.png" intFacilityType="10" iconBrand="" strPicture="" />
<marker type_facilities="5" id="RSA65" strName="BEHRANG NORTH" decLocation="383.20" decLong="101.446144" decLat="3.781459" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA65_5 description="Touch n Go Reload Lane" strIcon="Touch n Go Reload Lane.png" intFacilityType="9" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ28" strName="SLIM RIVER" decLocation="372.60" decLong="101.396088" decLat="3.846542" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ27" strName="SUNGKAI" decLocation="353.53" decLong="101.315651" decLat="3.989179" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ27_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="SHELL.png" strPicture="" />
<marker type_facilities="5" id="RSA60" strName="LADANG BIKAM NORTH" decLocation="347.40" decLong="101.310471" decLat="4.044076" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="7" id="RSA59" strName="BIDOR" decLocation="339.99" decLong="101.302582" decLat="4.109246" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ26" strName="BIDOR" decLocation="330.90" decLong="101.297966" decLat="4.107062" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="4" id="RSA58" strName="TAPAH NORTH" decLocation="332.30" decLong="101.289200" decLat="4.178302" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA58_4 description="ATM" strIcon="" intFacilityType="2" iconBrand="SHELL.png" strPicture="" />
<RSA58_4 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA58_4 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA58_4 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA58_4 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA58_4 description="Touch n Go Reload Lane" strIcon="Touch n Go Reload Lane.png" intFacilityType="9" iconBrand="" strPicture="" />
<RSA58_4 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<RSA58_4 description="" strIcon="" intFacilityType="12" iconBrand="" strPicture="" />
<marker type_facilities="6" id="RSA58" strName="TAPAH NORTH" decLocation="332.30" decLong="101.289200" decLat="4.178302" idhighway="1" type_signature="3" type_facility="11" type_cctv="1" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="image_facilities_16072014192813_1.jpg" iconBrand="" />
<RSA58_6 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<RSA58_6 description="ATM" strIcon="" intFacilityType="2" iconBrand="SHELL.png" strPicture="" />
<RSA58_6 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA58_6 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA58_6 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA58_6 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA58_6 description="Touch n Go Reload Lane" strIcon="Touch n Go Reload Lane.png" intFacilityType="9" iconBrand="" strPicture="" />
<RSA58_6 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<RSA58_6 description="" strIcon="" intFacilityType="12" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ25" strName="TAPAH" decLocation="326.80" decLong="101.269310" decLat="4.214063" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ24" strName="GOPENG" decLocation="296.55" decLong="101.167465" decLat="4.453094" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="5" id="RSA50" strName="SPG. PULAI NORTH" decLocation="290.40" decLong="101.151970" decLat="4.498935" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA50_5 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<marker type_facilities="1" id="TPZ23" strName="SPG. PULAI" decLocation="286.98" decLong="101.132774" decLat="4.525443" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ23_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ23_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ23_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ23_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ22" strName="IPOH SOUTH" decLocation="280.30" decLong="101.143730" decLat="4.583224" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ22_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="ESSO.png" strPicture="" />
<TPZ22_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ22_1 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<TPZ22_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ22_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ22_1 description="Motel" strIcon="Motel.png" intFacilityType="7" iconBrand="" strPicture="" />
<TPZ22_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<TPZ22_1 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<marker type_facilities="" id="" strName="" decLocation="263.10" decLong="" decLat="" idhighway="" type_signature="" type_facility="" type_cctv="" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="" id="" strName="" decLocation="260.80" decLong="" decLat="" idhighway="" type_signature="" type_facility="" type_cctv="" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="6" id="RSA43" strName="SG. PERAK NORTH" decLocation="249.30" decLong="100.944725" decLat="4.713400" idhighway="1" type_signature="3" type_facility="11" type_cctv="1" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="image_facilities_16072014192427_1.jpg" iconBrand="" />
<RSA43_6 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<RSA43_6 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA43_6 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA43_6 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA43_6 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA43_6 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA43_6 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<RSA43_6 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<marker type_facilities="4" id="RSA43" strName="SG. PERAK NORTH" decLocation="249.30" decLong="100.944725" decLat="4.713400" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA43_4 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<RSA43_4 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA43_4 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA43_4 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA43_4 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA43_4 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA43_4 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<RSA43_4 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ20" strName="KUALA KANGSAR" decLocation="241.43" decLong="100.901009" decLat="4.769026" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ20_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<TPZ20_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ20_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ20_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ20_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="6" id="RSA40" strName="BKT. GANTANG NORTH" decLocation="225.40" decLong="100.762688" decLat="4.772650" idhighway="1" type_signature="3" type_facility="11" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="image_facilities_16072014192516_1.jpg" iconBrand="" />
<RSA40_6 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="CALTEX.png" strPicture="" />
<RSA40_6 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA40_6 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA40_6 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA40_6 description="Touch n Go Reload Lane" strIcon="Touch n Go Reload Lane.png" intFacilityType="9" iconBrand="" strPicture="" />
<RSA40_6 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ19" strName="CGKT. JERING" decLocation="220.50" decLong="100.767166" decLat="4.772903" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ19_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<TPZ19_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ19_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ19_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ19_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="5" id="RSA36" strName="TAIPING NORTH" decLocation="213.00" decLong="100.674782" decLat="4.829525" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA36_5 description="Touch n Go Reload Lane" strIcon="Touch n Go Reload Lane.png" intFacilityType="9" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ18" strName="TAIPING NORTH" decLocation="205.60" decLong="100.669945" decLat="4.895189" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ18_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="SHELL.png" strPicture="" />
<TPZ18_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ18_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ18_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ18_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<TPZ18_1 description="Touch n Go SPOT" strIcon="Touch n Go Spot.png" intFacilityType="10" iconBrand="" strPicture="" />
<marker type_facilities="6" id="RSA32" strName="G. SEMANGGOL NORTH" decLocation="196.00" decLong="100.665680" decLat="4.982735" idhighway="1" type_signature="0" type_facility="11" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA32_6 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="ESSO.png" strPicture="" />
<RSA32_6 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA32_6 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA32_6 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA32_6 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA32_6 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA32_6 description="Touch n Go SPOT" strIcon="Touch n Go Spot.png" intFacilityType="10" iconBrand="" strPicture="" />
<RSA32_6 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<marker type_facilities="4" id="RSA32" strName="G. SEMANGGOL NORTH" decLocation="196.00" decLong="100.665680" decLat="4.982735" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA32_4 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="ESSO.png" strPicture="" />
<RSA32_4 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA32_4 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA32_4 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA32_4 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA32_4 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA32_4 description="Touch n Go SPOT" strIcon="Touch n Go Spot.png" intFacilityType="10" iconBrand="" strPicture="" />
<RSA32_4 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ17" strName="BKT. MERAH" decLocation="193.80" decLong="100.654045" decLat="4.996209" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ17_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="SHELL.png" strPicture="" />
<TPZ17_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ17_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ17_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ17_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<TPZ17_1 description="Touch n Go SPOT" strIcon="Touch n Go Spot.png" intFacilityType="10" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ96" strName="ALOR PONGSU" decLocation="181.40" decLong="100.594589" decLat="5.068439" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="5" id="RSA29" strName="ALOR PONGSU NORTH" decLocation="179.90" decLong="100.582336" decLat="5.077892" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA29_5 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="SHELL.png" strPicture="" />
<RSA29_5 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<RSA29_5 description="Touch n Go SPOT" strIcon="Touch n Go Spot.png" intFacilityType="10" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ16" strName="BANDAR BAHARU" decLocation="175.46" decLong="100.553719" decLat="5.108091" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ16_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<TPZ16_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ16_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ16_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ16_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ15" strName="JAWI" decLocation="163.30" decLong="100.489838" decLat="5.186803" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ15_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="BHP.png" strPicture="" />
<TPZ15_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ15_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ15_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ15_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="5" id="RSA25" strName="SG. BAKAP NORTH" decLocation="158.20" decLong="100.485481" decLat="5.223265" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ94" strName="BANDAR CASSIA" decLocation="154.60" decLong="100.454247" decLat="5.233848" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="1" id="TPZ13" strName="BKT. TAMBUN SOUTH" decLocation="151.61" decLong="100.456932" decLat="5.276698" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ13_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<TPZ13_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ13_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ13_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ13_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ12" strName="JURU" decLocation="145.72" decLong="100.436485" decLat="5.323598" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ12_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<TPZ12_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ12_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ12_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ12_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="7" id="RSA23" strName="JURU NORTH" decLocation="143.94" decLong="100.432274" decLat="5.338875" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA23_7 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA23_7 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA23_7 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA23_7 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="5" id="RSA21" strName="JURU NORTH" decLocation="141.80" decLong="100.418465" decLat="5.353114" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA21_5 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="ESSO.png" strPicture="" />
<RSA21_5 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA21_5 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA21_5 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA21_5 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="7" id="RSA123" strName="JLN PERUSAHAAN" decLocation="139.20" decLong="100.399971" decLat="5.364302" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="7" id="RSA122" strName="JLN PERAI" decLocation="137.65" decLong="100.403061" decLat="5.376442" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<marker type_facilities="7" id="RSA20" strName="EAST-WEST" decLocation="135.35" decLong="100.406670" decLat="5.399452" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA20_7 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<RSA20_7 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA20_7 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA20_7 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA20_7 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="7" id="RSA19" strName="PERMATANG PAUH" decLocation="133.87" decLong="100.407906" decLat="5.412600" idhighway="1" type_signature="0" type_facility="0" type_cctv="1" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA19_7 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<RSA19_7 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA19_7 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA19_7 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA19_7 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="7" id="RSA18" strName="SG. DUA" decLocation="129.60" decLong="100.419357" decLat="5.446764" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA18_7 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="SHELL.png" strPicture="" />
<RSA18_7 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA18_7 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA18_7 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA18_7 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<RSA18_7 description="Touch n Go SPOT" strIcon="Touch n Go Spot.png" intFacilityType="10" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ11" strName="SG. DUA" decLocation="128.40" decLong="100.419075" decLat="5.458535" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ11_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<TPZ11_1 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<TPZ11_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ11_1 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<TPZ11_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ11_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ11_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<TPZ11_1 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ10" strName="BERTAM" decLocation="120.20" decLong="100.442757" decLat="5.519460" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ10_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<TPZ10_1 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<TPZ10_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ10_1 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<TPZ10_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ10_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ10_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<TPZ10_1 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<marker type_facilities="5" id="RSA15" strName="SG. MUDA NORTH" decLocation="116.00" decLong="100.438995" decLat="5.558539" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA15_5 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="BHP.png" strPicture="" />
<RSA15_5 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA15_5 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA15_5 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA15_5 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ9" strName="SG. PETANI SOUTH" decLocation="107.02" decLong="100.485710" decLat="5.615116" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ9_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="CALTEX.png" strPicture="" />
<TPZ9_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ9_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ9_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ9_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ8" strName="SG. PETANI NORTH" decLocation="99.17" decLong="100.512253" decLat="5.675887" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ8_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="CALTEX.png" strPicture="" />
<TPZ8_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ8_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ8_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ8_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ7" strName="GURUN" decLocation="83.05" decLong="100.488892" decLat="5.815507" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ7_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="ESSO.png" strPicture="" />
<TPZ7_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ7_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ7_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ7_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="6" id="RSA11" strName="GURUN NORTH" decLocation="81.10" decLong="100.486740" decLat="5.833181" idhighway="1" type_signature="0" type_facility="11" type_cctv="1" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA11_6 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<RSA11_6 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA11_6 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA11_6 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA11_6 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA11_6 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA11_6 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<RSA11_6 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<marker type_facilities="4" id="RSA11" strName="GURUN NORTH" decLocation="81.10" decLong="100.486740" decLat="5.833181" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA11_4 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<RSA11_4 description="ATM" strIcon="" intFacilityType="2" iconBrand="CIMB.png" strPicture="" />
<RSA11_4 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA11_4 description="Food and Restaurant" strIcon="Restaurant.png" intFacilityType="4" iconBrand="" strPicture="" />
<RSA11_4 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA11_4 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA11_4 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<RSA11_4 description="Food Signature" strIcon="Signature Food.png" intFacilityType="11" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ6" strName="PENDANG" decLocation="63.40" decLong="100.444153" decLat="5.978221" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ6_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="PETRONAS.png" strPicture="" />
<TPZ6_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ6_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ6_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ6_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<TPZ6_1 description="Touch n Go SPOT" strIcon="Touch n Go Spot.png" intFacilityType="10" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ5" strName="ALOR SETAR SOUTH" decLocation="49.75" decLong="100.373940" decLat="6.082455" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ5_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="ESSO.png" strPicture="" />
<TPZ5_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ5_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ5_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ5_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ4" strName="ALOR SETAR NORTH" decLocation="43.60" decLong="100.394096" decLat="6.138197" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ4_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ4_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ4_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ4_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ3" strName="HUTAN KAMPUNG" decLocation="40.90" decLong="100.405746" decLat="6.160215" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ3_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="SHELL.png" strPicture="" />
<TPZ3_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ3_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ3_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ3_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="7" id="RSA4" strName="KEPALA BATAS" decLocation="35.80" decLong="100.419411" decLat="6.205569" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA4_7 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA4_7 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA4_7 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA4_7 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="7" id="RSA3" strName="JITRA SOUTH" decLocation="31.80" decLong="100.433311" decLat="6.236902" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA3_7 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="SHELL.png" strPicture="" />
<RSA3_7 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA3_7 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA3_7 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA3_7 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="5" id="RSA2" strName="KEPALA BATAS NORTH" decLocation="30.50" decLong="100.435204" decLat="6.248657" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA2_5 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="CALTEX.png" strPicture="" />
<RSA2_5 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA2_5 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA2_5 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA2_5 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ2" strName="JITRA" decLocation="30.10" decLong="100.435204" decLat="6.252118" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ2_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="CALTEX.png" strPicture="" />
<TPZ2_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ2_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ2_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ2_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="7" id="RSA1" strName="JITRA NORTH" decLocation="26.70" decLong="100.425606" decLat="6.281097" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<RSA1_7 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="SHELL.png" strPicture="" />
<RSA1_7 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<RSA1_7 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<RSA1_7 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<RSA1_7 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
<marker type_facilities="1" id="TPZ1" strName="BKT. KAYU HITAM" decLocation="0.70" decLong="100.419975" decLat="6.512241" idhighway="1" type_signature="0" type_facility="0" type_cctv="0" waypoint="0" startSeq="1" endSeq="167" idRoute="7" strPicture="" iconBrand="" />
<TPZ1_1 description="Petrol Station" strIcon="" intFacilityType="0" iconBrand="SHELL.png" strPicture="" />
<TPZ1_1 description="Public Toilet" strIcon="Public Toilet.png" intFacilityType="3" iconBrand="" strPicture="" />
<TPZ1_1 description="Surau" strIcon="Surau.png" intFacilityType="5" iconBrand="" strPicture="" />
<TPZ1_1 description="Public Telephone" strIcon="Public Telephone.png" intFacilityType="6" iconBrand="" strPicture="" />
<TPZ1_1 description="Touch n Go Reload" strIcon="Touch n Go.png" intFacilityType="8" iconBrand="" strPicture="" />
</markers>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment