Skip to content

Instantly share code, notes, and snippets.

@clhenrick
Last active August 29, 2015 13:57
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save clhenrick/9823330 to your computer and use it in GitHub Desktop.
Triggering openPopup() with an AnimatedMarker in Leaflet
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.css" />
<script src="http://cdn.leafletjs.com/leaflet-0.7.2/leaflet.js"></script>
<script src="http://rawgithub.com/openplans/Leaflet.AnimatedMarker/master/src/AnimatedMarker.js"></script>
<script src="http://rawgithub.com/makinacorpus/Leaflet.GeometryUtil/master/dist/leaflet.geometryutil.js"></script>
<script type="text/javascript" src="http://maps.stamen.com/js/tile.stamen.js?v1.2.4"></script>
<style type="text/css">
html, body {
margin: 0 auto;
padding: 0px;
width: 100%;
height: 100%;
}
#map {
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<div id="map"></div>
<script type="text/javascript" src="./leaflet.geometryutil.js"></script>
<script type="text/javascript" src="./trail.js"></script>
<script type="text/javascript" src="./points-of-interest.js"></script>
<script type="text/javascript">
var app = app || {};
app = (function(){
// alter Leaflet's Map's openPopup method so that multiple popups may be opened simultaneously
L.Map = L.Map.extend({
openPopup: function(popup) {
//this.closePopup();
this._popup = popup;
return this.addLayer(popup).fire('popupopen', {
popup: this._popup
});
}
});
// set up the map with, lat lon position, zoom level, and Stamen Terrain tiles
var map = L.map('map').setView([32.5897, -116.4669], 13);
var layer = new L.StamenTileLayer("terrain");
map.addLayer(layer);
// variable for AnimatedMarker (will be added later)
var animatedMarker;
// variable for geojson layer to display trail
var trail = new L.geoJson(pct);
trail.addTo(map);
// temporary array to store lat lon coordinates for animatedMarker
var temp = [];
// create an empty feature group for POI markers and add it to map
// add actual markers later
var poi_markers = L.layerGroup().addTo(map);
// function that adds point of interest (poi) markers
var fetchPOIs = function() {
var onEachFeature = function(feature, layer, animatedMarker){
var name = feature.properties.Name,
desc = feature.properties.Descriptio,
lat = feature.geometry.coordinates[1],
lon = feature.geometry.coordinates[0];
layer.bindPopup(popupContent(feature, layer, name, desc, lat, lon));
animatedMarker.on({'move': function(e){
// measure distance in pixels from animatedMarker to poi markers
var d = L.GeometryUtil.distance(map, e.latlng, [lat,lon]);
// do a distance test to open / close popups
if (d < 100) { layer.openPopup(); }
if (d > 200) { layer.closePopup(); }
}
});
};
// check point of interest data for what to add to popups
var popupContent = function(feature, layer, name, desc, lat, lon) {
if (name && !desc) {
return "<h2>" + name + "</h2>";
} else if (name && desc) {
return "<h2>" + name + "</h2>" + "<p>" + desc + "</p>";
} else if (!name && desc) {
return "<p>" + desc + "</p>";
};
}
// load markers (features from points-of-interest.js) in a geojson layer
var markers = L.geoJson(features, {
// pass onEachFeature an anonymous function so that animatedMarker can then be passed as a parameter
onEachFeature: function(feature, layer){
onEachFeature(feature, layer, animatedMarker);
}
});
// add the geojson markers to the feature group so that it's added to the map
poi_markers.addLayer(markers);
};
// on eachLayer function for geojson
var eachLayer = trail.eachLayer(function(layer){
var coordinates = layer.feature.geometry.coordinates,
len = coordinates.length,
i = 0;
for (i; i<len; i++){
var lat = coordinates[i][1],
lon = coordinates[i][0];
// reverse order of lon, lat for L.polyline
temp.push([lat, lon]);
}
});
// create a polyline for animatedMarker path
var line = new L.polyline(temp),
// add the animatedMarker using the polyline latlngs
animatedMarker = L.animatedMarker(line.getLatLngs(), {
autoStart: false,
distance: 2000,
interval: 1000
});
// function to keep map centered on animatedMarker as it moves
var pan_map = function(){
map.panTo({lon: animatedMarker['_latlng'].lng, lat: animatedMarker['_latlng'].lat});;
};
// init the whole damn thing!
var init = function(){
fetchPOIs();
map.addLayer(animatedMarker);
animatedMarker.start();
setInterval(function(){
pan_map();
}, 1000);
}
return {
init : init,
animatedMarker: animatedMarker
}
})();
window.addEventListener('DOMContentLoaded', app.init);
</script>
</body>
</html>
var features = {
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "Name": "Deep Creek Hot Springs", "feature_cl": "nf", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -117.176956113614267, 34.339400363350777 ] } },
{ "type": "Feature", "properties": { "Name": "Mount Laguna", "feature_cl": "town", "Descriptio": "My feet grew 1.5 shoe sizes" }, "geometry": { "type": "Point", "coordinates": [ -116.418794429775616, 32.867490912150984 ] } },
{ "type": "Feature", "properties": { "Name": "The Saufley's", "feature_cl": "lodging", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -118.343555892530276, 34.49680766137255 ] } },
{ "type": "Feature", "properties": { "Name": "Mount Baden Powell", "feature_cl": "peak", "Descriptio": "Southern CA high point, almost 10,000 feet" }, "geometry": { "type": "Point", "coordinates": [ -117.764504415964893, 34.358525422067416 ] } },
{ "type": "Feature", "properties": { "Name": "Mount San Jacinto", "feature_cl": "peak", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -116.679186136594623, 33.814469346617585 ] } },
{ "type": "Feature", "properties": { "Name": "Fuller Ridge", "feature_cl": "nf", "Descriptio": "7,000 feet down from here over 15 miles" }, "geometry": { "type": "Point", "coordinates": [ -116.725025791636085, 33.836762713254153 ] } },
{ "type": "Feature", "properties": { "Name": "Idyllwild Campground", "feature_cl": "camp", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -116.719610865372942, 33.740993405674573 ] } },
{ "type": "Feature", "properties": { "Name": "Warner Springs", "feature_cl": "town", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -116.634585001921835, 33.283518544836539 ] } },
{ "type": "Feature", "properties": { "Name": "Eagle Rock", "feature_cl": "nf", "Descriptio": "I have a photo but GIS is good too" }, "geometry": { "type": "Point", "coordinates": [ -116.611643572301645, 33.254629337166669 ] } },
{ "type": "Feature", "properties": { "Name": "Cold Canyon", "feature_cl": "nf", "Descriptio": "Had Ice in my bottles in the AM - May 4th" }, "geometry": { "type": "Point", "coordinates": [ -116.414229186090992, 32.819822279355733 ] } },
{ "type": "Feature", "properties": { "Name": "Lake Morena Campground", "feature_cl": "camp", "Descriptio": "First night on trail!" }, "geometry": { "type": "Point", "coordinates": [ -116.518509720855462, 32.683441024802562 ] } },
{ "type": "Feature", "properties": { "Name": "Southern Terminus of the PCT", "feature_cl": "poi", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -116.46695271015848, 32.589975941164745 ] } },
{ "type": "Feature", "properties": { "Name": "Ziggy and the Bears", "feature_cl": "lodging", "Descriptio": "First trail angel stop! Lots of blisters by now." }, "geometry": { "type": "Point", "coordinates": [ -116.699650525477409, 33.938004552695425 ] } },
{ "type": "Feature", "properties": { "Name": "Mission Creek", "feature_cl": "nf_water", "Descriptio": "First actual stream" }, "geometry": { "type": "Point", "coordinates": [ -116.666988151102899, 34.049125752287011 ] } },
{ "type": "Feature", "properties": { "Name": "Big Bear Hostel", "feature_cl": "lodging", "Descriptio": "3 days off here" }, "geometry": { "type": "Point", "coordinates": [ -116.909738143367775, 34.243026196986484 ] } },
{ "type": "Feature", "properties": { "Name": "Wrightwood", "feature_cl": "town", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -117.633394073678502, 34.360829646009186 ] } },
{ "type": "Feature", "properties": { "Name": "Clear Creek Ranger Station", "feature_cl": "site", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -118.153140586542719, 34.270014419904399 ] } },
{ "type": "Feature", "properties": { "Name": "Acton Los Angeles North KOA", "feature_cl": "lodging", "Descriptio": "I made out with that Christian girl here, 8th grade style" }, "geometry": { "type": "Point", "coordinates": [ -118.2688558326182, 34.438798823638635 ] } },
{ "type": "Feature", "properties": { "Name": "Hikertown", "feature_cl": "lodging", "Descriptio": "GIS it, seriously" }, "geometry": { "type": "Point", "coordinates": [ -118.61110509496838, 34.774581857552242 ] } },
{ "type": "Feature", "properties": { "Name": "LA Aqueduct walk", "feature_cl": "nf_water", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -118.582878351681771, 34.799957123710925 ] } },
{ "type": "Feature", "properties": { "Name": "McDonald's", "feature_cl": "food", "Descriptio": "Best 4,000 calorie breakfast on the trail, j\/k it was terrible." }, "geometry": { "type": "Point", "coordinates": [ -117.470384631198314, 34.309128621315843 ] } },
{ "type": "Feature", "properties": { "Name": "Tehachapi", "feature_cl": "town", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -118.35876377054592, 35.052269645334121 ] } },
{ "type": "Feature", "properties": { "Name": "Tehachipi Wind Farm", "feature_cl": "site", "Descriptio": "Out of the Mojave!" }, "geometry": { "type": "Point", "coordinates": [ -118.471656342292732, 34.965573219525233 ] } },
{ "type": "Feature", "properties": { "Name": "First time running out of water", "feature_cl": "event", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -118.252423835633493, 35.148557403300593 ] } },
{ "type": "Feature", "properties": { "Name": "Dude gave me soda", "feature_cl": "event", "Descriptio": "White pickup truck pulls up out of no where Do you want any ice?\"  FUCK YES\"" }, "geometry": { "type": "Point", "coordinates": [ -118.223966669952702, 35.450525950868808 ] } },
{ "type": "Feature", "properties": { "Name": "Water Cache here", "feature_cl": "site", "Descriptio": "70 year old Mary of Belden\" keeps about 200 gallons of water stocked here every year\"" }, "geometry": { "type": "Point", "coordinates": [ -118.123531308891046, 35.582500377133364 ] } },
{ "type": "Feature", "properties": { "Name": "Trail Magic at Walker Pass", "feature_cl": "event", "Descriptio": "I caught the trail end of a week long trail magic event here.  Saw a friend I started hiking with and hadn't seen in 300 miles - Dave Magic Mullet\"\"" }, "geometry": { "type": "Point", "coordinates": [ -118.028870909083452, 35.663637862682741 ] } },
{ "type": "Feature", "properties": { "Name": "Best view in SoCal", "feature_cl": "poi", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -117.98321847223724, 35.698921291791009 ] } },
{ "type": "Feature", "properties": { "Name": "Bears", "feature_cl": "event", "Descriptio": "Couple of bear cubs discovered hiker food here" }, "geometry": { "type": "Point", "coordinates": [ -118.02800682510528, 35.769056108018461 ] } },
{ "type": "Feature", "properties": { "Name": "Kennedy Meadows Campground", "feature_cl": "camp", "Descriptio": "Met up with Chris!  Pancakes!" }, "geometry": { "type": "Point", "coordinates": [ -118.131192853497424, 36.052706075249652 ] } },
{ "type": "Feature", "properties": { "Name": "Chicken Spring Lake", "feature_cl": "nf_water", "Descriptio": "Epicly beautiful" }, "geometry": { "type": "Point", "coordinates": [ -118.227451808664625, 36.457414207821287 ] } },
{ "type": "Feature", "properties": { "Name": "Guitar Lake", "feature_cl": "nf_water", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -118.313687389685157, 36.570263575369196 ] } },
{ "type": "Feature", "properties": { "Name": "Forester Pass", "feature_cl": "peak", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -118.373453198174673, 36.694317231833928 ] } },
{ "type": "Feature", "properties": { "Name": "Kearsarge Pass", "feature_cl": "peak", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -118.376736717291678, 36.773006479445186 ] } },
{ "type": "Feature", "properties": { "Name": "Muir Pass", "feature_cl": "peak", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -118.671389353844802, 37.112015426877264 ] } },
{ "type": "Feature", "properties": { "Name": "Pinchot Pass", "feature_cl": "peak", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -118.41281222337993, 36.936519970912634 ] } },
{ "type": "Feature", "properties": { "Name": "Silver Pass", "feature_cl": "peak", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -118.923183425081092, 37.467729997887133 ] } },
{ "type": "Feature", "properties": { "Name": "Glen Pass", "feature_cl": "peak", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -118.413517891962087, 36.789308863833163 ] } },
{ "type": "Feature", "properties": { "Name": "Evolution Lake", "feature_cl": "nf_water", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -118.694647614256979, 37.167432012676691 ] } },
{ "type": "Feature", "properties": { "Name": "Sonora Pass", "feature_cl": "peak", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -119.636830382644774, 38.327695175752858 ] } },
{ "type": "Feature", "properties": { "Name": "Tuolumne Meadow", "feature_cl": "nf", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -119.358984179466916, 37.876614536353216 ] } },
{ "type": "Feature", "properties": { "Name": "Thousand Island Lake", "feature_cl": "nf_water", "Descriptio": "Mosquito hell!  I ate breakfast burritos here" }, "geometry": { "type": "Point", "coordinates": [ -119.180622844974721, 37.730699555240989 ] } },
{ "type": "Feature", "properties": { "Name": "Reds Meadow", "feature_cl": "nf", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -119.075420620633537, 37.619923989240668 ] } },
{ "type": "Feature", "properties": { "Name": "Devils Postpile National Monument", "feature_cl": "poi", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -119.092255856808052, 37.603794421648317 ] } },
{ "type": "Feature", "properties": { "Name": "Donner Pass", "feature_cl": "peak", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -120.321616935337872, 39.315890415977762 ] } },
{ "type": "Feature", "properties": { "Name": "Sierra City", "feature_cl": "town", "Descriptio": "I started hiking with Derek and Michele here until Burney Falls CG" }, "geometry": { "type": "Point", "coordinates": [ -120.634069701841113, 39.566474769644636 ] } },
{ "type": "Feature", "properties": { "Name": "Hat Creek Rim", "feature_cl": "nf", "Descriptio": "Insanely hot, hiked this mostly at night.  Walked until midnight, up at 5 am and walked til noon to get to town." }, "geometry": { "type": "Point", "coordinates": [ -121.418312320420611, 40.812397457755885 ] } },
{ "type": "Feature", "properties": { "Name": "Belden", "feature_cl": "town", "Descriptio": null }, "geometry": { "type": "Point", "coordinates": [ -121.249139078896192, 40.006005486536182 ] } },
{ "type": "Feature", "properties": { "Name": "Paradise Lake", "feature_cl": "nf_water", "Descriptio": "POI - Spring fed, ice cold and mirror clear" }, "geometry": { "type": "Point", "coordinates": [ -123.210724920520178, 41.61294246072336 ] } },
{ "type": "Feature", "properties": { "Name": "Etna", "feature_cl": "town", "Descriptio": "The perfect town - ice cream parlor, brewery, pizza place.  That's about it. " }, "geometry": { "type": "Point", "coordinates": [ -122.894758212505749, 41.456802485869559 ] } },
{ "type": "Feature", "properties": { "Name": "Seiad Valley", "feature_cl": "town", "Descriptio": "Awesome little town.  Population like 400 and they had tofu so my friend Vegan Paul could get his first restaurant meal of the trail." }, "geometry": { "type": "Point", "coordinates": [ -123.192550354179517, 41.840398166574779 ] } },
{ "type": "Feature", "properties": { "Name": "Three Sisters", "feature_cl": "nf", "Descriptio": "Amazingly beautiful mountains and one of the best sunsets on the trail here" }, "geometry": { "type": "Point", "coordinates": [ -121.777958473531115, 44.085605172630679 ] } },
{ "type": "Feature", "properties": { "Name": "Mount Thelson", "feature_cl": "peak", "Descriptio": "POI - A friend hitched into town but forgot his purple I can be your huckleberry\" hat on my pack.  I duct taped it to a trail sign here and he found it the next day.\"" }, "geometry": { "type": "Point", "coordinates": [ -122.067037768425081, 43.152077645424129 ] } },
{ "type": "Feature", "properties": { "Name": "Ashland, OR", "feature_cl": "town", "Descriptio": "First town in OR! Literally the best breakfast of my life at the Mill Inn - a B&B with a backpacker hostel" }, "geometry": { "type": "Point", "coordinates": [ -122.709052164199178, 42.195968723588287 ] } },
{ "type": "Feature", "properties": { "Name": "Columbia River Gorge", "feature_cl": "nf", "Descriptio": "Natural Feature - lowest point on the PCT with a solid 6,000 feet of climbing the day after" }, "geometry": { "type": "Point", "coordinates": [ -121.93748277729938, 45.659937378041889 ] } },
{ "type": "Feature", "properties": { "Name": "Rock Creek", "feature_cl": "nf_water", "Descriptio": "POI - I got stung about 12 times by hornets here" }, "geometry": { "type": "Point", "coordinates": [ -121.956708645813478, 45.811324891015808 ] } },
{ "type": "Feature", "properties": { "Name": "Mount Adams", "feature_cl": "nf", "Descriptio": "Natural Feature - Such an epic mountain.  There's a photo of me napping with this in the background." }, "geometry": { "type": "Point", "coordinates": [ -121.484241927954344, 46.201718032349234 ] } },
{ "type": "Feature", "properties": { "Name": "Goat Rocks", "feature_cl": "nf", "Descriptio": "Natural Feature - indescribably beautiful." }, "geometry": { "type": "Point", "coordinates": [ -121.417865877031886, 46.491214967832647 ] } },
{ "type": "Feature", "properties": { "Name": "White Pass Food Truck", "feature_cl": "site", "Descriptio": "Awesome Thai fusion food truck in the parking lot of a gas station\/post office - the ardvark!" }, "geometry": { "type": "Point", "coordinates": [ -121.390690435918714, 46.637878821725948 ] } },
{ "type": "Feature", "properties": { "Name": "Trail Magic!", "feature_cl": "event", "Descriptio": "An amazing lady set up hot chili, coffee and snacks for us at the trail head!" }, "geometry": { "type": "Point", "coordinates": [ -121.515910605753959, 46.872160791004838 ] } },
{ "type": "Feature", "properties": { "Name": "Glacier Peak", "feature_cl": "peak", "Descriptio": "Natural Feature - the most awesomest mountain on the PCT" }, "geometry": { "type": "Point", "coordinates": [ -121.113996344711722, 48.111228412889339 ] } },
{ "type": "Feature", "properties": { "Name": "Stehekin", "feature_cl": "town", "Descriptio": "POI - best bakery, best town and nicest people on the whole trail" }, "geometry": { "type": "Point", "coordinates": [ -120.656492681074411, 48.309305263483253 ] } },
{ "type": "Feature", "properties": { "Name": "Hart's Pass", "feature_cl": "peak", "Descriptio": "POI - the last road crossing before Canada, 30 trail miles away" }, "geometry": { "type": "Point", "coordinates": [ -120.669785172938461, 48.720522828690378 ] } },
{ "type": "Feature", "properties": { "Name": "Northern Terminus of the PCT", "feature_cl": "poi", "Descriptio": "Man did my feet hurt" }, "geometry": { "type": "Point", "coordinates": [ -120.800002628447416, 49.000255615220567 ] } }
]
};
var pct = {
"type": "FeatureCollection",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:OGC:1.3:CRS84"
}
},
"features": [
{
"type": "Feature",
"properties": {
"#Opacity": 100,
"#Component": 1,
"#LayerName": "CA Sec A_line",
"#Id": -214748364,
"#Name": "CA Sec A",
"#VertexCou": 7321,
"#Style": null,
"#StrokeWei": 3,
"#PathClose": "F",
"#Length": 1.662881328,
"#ArtScale": 1,
"KmlName": "CA Sec A",
"KmlStyleUr": "#lineStyle"
},
"geometry": {
"type": "LineString",
"coordinates": [
[
-116.46694979146261,
32.589707
],
[
-116.46784358663243,
32.590682049276175
],
[
-116.46670602914357,
32.59401346763643
],
[
-116.46674665619673,
32.59752770773596
],
[
-116.46883894943518,
32.59752770773596
],
[
-116.47042340450896,
32.60089975314939
],
[
-116.47044371803555,
32.60390615508426
],
[
-116.4713171996788,
32.60522653431241
],
[
-116.47426266103389,
32.60672973527984
],
[
-116.48078330306829,
32.60463744204139
],
[
-116.4835662562107,
32.605693745423906
],
[
-116.48291622335992,
32.606567227067146
],
[
-116.48352562915753,
32.60754227634331
],
[
-116.48726331804951,
32.60607970242906
],
[
-116.49114320162762,
32.608639206779
],
[
-116.49098069341493,
32.60754227634331
],
[
-116.49305267312678,
32.60593750774295
],
[
-116.49238232674942,
32.605246847839
],
[
-116.49323549486607,
32.60494214494019
],
[
-116.49729820018345,
32.60573437247708
],
[
-116.498009173614,
32.60687192996595
],
[
-116.49945143400167,
32.606567227067146
],
[
-116.49898422289017,
32.60798917392823
],
[
-116.50054836443736,
32.60685161643936
],
[
-116.50197031129845,
32.60792823334847
],
[
-116.50385946927102,
32.607521962816726
],
[
-116.50414385864325,
32.609654883108355
],
[
-116.5054439243448,
32.609167358470266
],
[
-116.50611427072218,
32.61006115364009
],
[
-116.50650022772733,
32.60975645074129
],
[
-116.50694712531224,
32.60845638503973
],
[
-116.50721120115787,
32.60825324977385
],
[
-116.506073643669,
32.61329100436741
],
[
-116.50712994705152,
32.613412885526934
],
[
-116.5074752770035,
32.61513953528682
],
[
-116.50812530985428,
32.61509890823365
],
[
-116.50741433642374,
32.61585050871736
],
[
-116.50814562338087,
32.616703676834014
],
[
-116.50751590405667,
32.61820687780144
],
[
-116.50818625043404,
32.61987258698157
],
[
-116.5068455576793,
32.62127422031607
],
[
-116.50863314801896,
32.622818048336676
],
[
-116.50729245526422,
32.623021183602546
],
[
-116.50761747168961,
32.62535723916004
],
[
-116.51281773449585,
32.629480885057184
],
[
-116.51543817942557,
32.630638756072635
],
[
-116.51515379005335,
32.62941994447742
],
[
-116.5157022552712,
32.63002935027503
],
[
-116.51562100116485,
32.62905430099886
],
[
-116.51700232097276,
32.6280589381961
],
[
-116.51625072048904,
32.627835489403644
],
[
-116.51704294802593,
32.626758872494534
],
[
-116.51665699102078,
32.62539786621321
],
[
-116.51874928425923,
32.62330557297476
],
[
-116.52163380503458,
32.62635260196279
],
[
-116.5226901084171,
32.62558068795249
],
[
-116.52407142822501,
32.628993360419095
],
[
-116.52370578474644,
32.6297652744294
],
[
-116.52547306155951,
32.632852930470605
],
[
-116.52663093257496,
32.63839852322884
],
[
-116.52492459634166,
32.63894698844668
],
[
-116.52508710455436,
32.6396985889304
],
[
-116.52378703885279,
32.64085645994585
],
[
-116.52449801228333,
32.64315188845018
],
[
-116.52409174175159,
32.64430975946563
],
[
-116.52204007556631,
32.64556919811402
],
[
-116.52309637894884,
32.64662550149654
],
[
-116.52234477846513,
32.64788494014493
],
[
-116.52567619682537,
32.64849434594254
],
[
-116.5271793977928,
32.647966194251275
],
[
-116.52917012339833,
32.64953033579847
],
[
-116.5299826644618,
32.65170388314327
],
[
-116.53057175673283,
32.65078977444686
],
[
-116.53140461132288,
32.65172419666985
],
[
-116.53424850504506,
32.65123667203177
],
[
-116.53985503838304,
32.65316645705752
],
[
-116.54278018621156,
32.65247579715357
],
[
-116.55072277510703,
32.660052742570485
],
[
-116.54554282582738,
32.65613223193921
],
[
-116.54217078041395,
32.65464934449837
],
[
-116.54466934418414,
32.657269789428085
],
[
-116.5456647069869,
32.65964647203875
],
[
-116.54568502051349,
32.66214503580894
],
[
-116.54265830505203,
32.66249036576092
],
[
-116.5438161760675,
32.66413576141446
],
[
-116.53946908137789,
32.66446077783985
],
[
-116.5375799234053,
32.66379043146248
],
[
-116.53833152388903,
32.666654638711236
],
[
-116.5354266895871,
32.66539520006285
],
[
-116.53365941277403,
32.66805627204573
],
[
-116.53357815866768,
32.66990480296514
],
[
-116.53248122823199,
32.67025013291712
],
[
-116.53227809296612,
32.67250493436827
],
[
-116.53051081615305,
32.671286122773054
],
[
-116.52807319296264,
32.67270806963414
],
[
-116.5262652890964,
32.67112361456036
],
[
-116.5215931779814,
32.67116424161353
],
[
-116.51919618184415,
32.67228148557581
],
[
-116.52041499343936,
32.67492224403211
],
[
-116.51883053836558,
32.67603948799439
],
[
-116.51899304657827,
32.67733955369596
],
[
-116.5202118581735,
32.67896463582291
],
[
-116.52413236880477,
32.680752226162554
],
[
-116.52421362291112,
32.68199135128435
],
[
-116.51669761807396,
32.682600757081964
],
[
-116.51679918570689,
32.686094683654915
],
[
-116.5152350441597,
32.68631813244737
],
[
-116.51419905430377,
32.68946672906834
],
[
-116.50899879149752,
32.689974567233016
],
[
-116.50213281951115,
32.69210748752464
],
[
-116.50176717603257,
32.69340755322621
],
[
-116.50030460211832,
32.69389507786429
],
[
-116.50006083979927,
32.6960483116825
],
[
-116.49926861226238,
32.696759285113046
],
[
-116.49715600549735,
32.697206182697954
],
[
-116.49729820018345,
32.695174830039264
],
[
-116.4959981344819,
32.69444354308214
],
[
-116.49445430646128,
32.69980631410108
],
[
-116.49557155042356,
32.70159390444073
],
[
-116.49565280452991,
32.70508783101368
],
[
-116.49880140115089,
32.708256741161236
],
[
-116.49872014704454,
32.71197411652665
],
[
-116.49679036201879,
32.71248195469131
],
[
-116.49951237458143,
32.715996194790854
],
[
-116.49581531274261,
32.721094889964164
],
[
-116.49465744172716,
32.7294234358648
],
[
-116.489010281336,
32.72932186823187
],
[
-116.48417566200831,
32.72794054842396
],
[
-116.48267246104088,
32.7295859440775
],
[
-116.48344437505118,
32.731800118475476
],
[
-116.48277402867382,
32.73279548127823
],
[
-116.48102706538734,
32.733018930070685
],
[
-116.48064110838219,
32.73421742813932
],
[
-116.47948323736674,
32.734298682245665
],
[
-116.47903633978181,
32.733120497703624
],
[
-116.47560335378863,
32.73151572910326
],
[
-116.47432360161365,
32.72844838658863
],
[
-116.47367356876288,
32.72844838658863
],
[
-116.47188597842322,
32.730053155189
],
[
-116.47282040064623,
32.73068287451319
],
[
-116.47251569774741,
32.73117039915128
],
[
-116.46632007213842,
32.735172163888905
],
[
-116.46556847165469,
32.74065681606737
],
[
-116.46392307600115,
32.740473994328084
],
[
-116.46380119484164,
32.7426272281463
],
[
-116.46150576633731,
32.74817282090453
],
[
-116.45766650981238,
32.74971664892513
],
[
-116.4556351571537,
32.74963539481878
],
[
-116.45466010787752,
32.74742122042081
],
[
-116.45181621415536,
32.7477462368462
],
[
-116.44923639627882,
32.7465071117244
],
[
-116.44529557212095,
32.74892442138824
],
[
-116.44385331173328,
32.751605806897715
],
[
-116.44218760255315,
32.75148392573819
],
[
-116.4407047151123,
32.75282461849293
],
[
-116.43928276825122,
32.75512004699725
],
[
-116.43920151414488,
32.75794362719283
],
[
-116.4379420754965,
32.76086877502135
],
[
-116.43952653057026,
32.766800324784725
],
[
-116.43881555713972,
32.77330065329254
],
[
-116.43991248757541,
32.77555545474369
],
[
-116.43981091994249,
32.776266428174225
],
[
-116.43926245472464,
32.77537263300441
],
[
-116.43753580496475,
32.77516949773853
],
[
-116.43723110206595,
32.779963490013046
],
[
-116.43800301607625,
32.781893275038804
],
[
-116.43524037646043,
32.784980931080014
],
[
-116.43568727404534,
32.78727635958434
],
[
-116.43483410592869,
32.78835297649344
],
[
-116.4334121590676,
32.78930771224303
],
[
-116.43225428805215,
32.78912489050374
],
[
-116.4310964170367,
32.78707322431847
],
[
-116.42945102138316,
32.78942959340255
],
[
-116.42796813394231,
32.78942959340255
],
[
-116.42774468514986,
32.79257819002352
],
[
-116.42622117065584,
32.7955642784318
],
[
-116.42646493297488,
32.797392495824624
],
[
-116.42161000012061,
32.80062234655194
],
[
-116.42205689770552,
32.80149582819518
],
[
-116.42091934021666,
32.80173959051422
],
[
-116.42319445519439,
32.80555853351256
],
[
-116.42339759046025,
32.809682179409705
],
[
-116.42091934021666,
32.81244481902553
],
[
-116.41852234407939,
32.813257360089
],
[
-116.4135455300656,
32.81987956975634
],
[
-116.41653161847388,
32.819635807437294
],
[
-116.41770980301592,
32.821301516617424
],
[
-116.41687694842585,
32.82266252289874
],
[
-116.4180551329679,
32.82688773642882
],
[
-116.41738478659053,
32.830666052373985
],
[
-116.41984272330755,
32.831945804548965
],
[
-116.41980209625437,
32.83582568812706
],
[
-116.41833952234012,
32.837735159626234
],
[
-116.41860359818574,
32.8412087726726
],
[
-116.41797387886155,
32.842285389581704
],
[
-116.41862391171233,
32.844804266878484
],
[
-116.41813638707424,
32.84795286349945
],
[
-116.4197614692012,
32.854575073166785
],
[
-116.41716133779808,
32.856423604086196
],
[
-116.41783168417544,
32.85756116157506
],
[
-116.41567845035723,
32.858333075585364
],
[
-116.41358615711877,
32.85774398331435
],
[
-116.41255016726285,
32.85880028669686
],
[
-116.41244859962991,
32.866295978007436
],
[
-116.41303769190093,
32.866986637911396
],
[
-116.41250954020967,
32.86769761134194
],
[
-116.41521123924574,
32.871110283808534
],
[
-116.41768948948933,
32.87610741134891
],
[
-116.42156937306744,
32.878971618597674
],
[
-116.42199595712576,
32.8801701166663
],
[
-116.42091934021666,
32.88163269058056
],
[
-116.42018805325952,
32.885146930680094
],
[
-116.42150843248767,
32.88658919106776
],
[
-116.42544925664554,
32.88766580797687
],
[
-116.42605866244314,
32.88868148430622
],
[
-116.4254898836987,
32.89132224276251
],
[
-116.42646493297488,
32.89142381039545
],
[
-116.42563207838482,
32.891850394453776
],
[
-116.42595709481022,
32.89266293551725
],
[
-116.42802907452207,
32.89408488237834
],
[
-116.42900412379825,
32.89684752199416
],
[
-116.43083234119106,
32.89701003020685
],
[
-116.43192927162676,
32.89810696064255
],
[
-116.43322933732833,
32.89774131716398
],
[
-116.43471222476917,
32.89205352971965
],
[
-116.43554507935923,
32.89286607078312
],
[
-116.4382467783953,
32.893109833102166
],
[
-116.44182195907459,
32.89780225774374
],
[
-116.44308139772298,
32.89676626788781
],
[
-116.4449096151158,
32.89759912247787
],
[
-116.44602685907807,
32.89461303406959
],
[
-116.44639250255665,
32.89536463455331
],
[
-116.44641281608324,
32.89469428817594
],
[
-116.44811915231654,
32.894917736968395
],
[
-116.45069897019307,
32.89883824759967
],
[
-116.45169433299583,
32.89816790122231
],
[
-116.45327878806961,
32.89898044228578
],
[
-116.45413195618626,
32.90192590364089
],
[
-116.45350223686206,
32.90271813117778
],
[
-116.45628519000448,
32.90464791620353
],
[
-116.45656957937669,
32.90562296547971
],
[
-116.45628519000448,
32.90661832828246
],
[
-116.45413195618626,
32.907918393984026
],
[
-116.45494449724974,
32.90962473021733
],
[
-116.45342098275572,
32.91244831041291
],
[
-116.45394913444697,
32.914764052443815
],
[
-116.45533045425489,
32.91551565292753
],
[
-116.4556148436271,
32.917221989160836
],
[
-116.45598048710566,
32.91659226983664
],
[
-116.4570164769616,
32.91714073505449
],
[
-116.45815403445047,
32.91925334181953
],
[
-116.46063228469407,
32.91961898529809
],
[
-116.4619932909754,
32.920959678052824
],
[
-116.46237924798055,
32.92368169061547
],
[
-116.46406527068726,
32.92605837322614
],
[
-116.46729512141458,
32.92624119496542
],
[
-116.4692858470201,
32.92768345535309
],
[
-116.47139845378514,
32.92406764762062
],
[
-116.47087030209387,
32.92189410027582
],
[
-116.4722313083752,
32.92124406742504
],
[
-116.47310479001844,
32.922970717184924
],
[
-116.47403921224144,
32.92236131138732
],
[
-116.47479081272515,
32.92331604713691
],
[
-116.47527833736324,
32.92284883602541
],
[
-116.47785815523977,
32.92532708626901
],
[
-116.47997076200481,
32.92459579931188
],
[
-116.48230681756232,
32.925042696896796
],
[
-116.48086455717464,
32.92733812540112
],
[
-116.48100675186075,
32.93152271187802
],
[
-116.48334280741824,
32.93627607709936
],
[
-116.48281465572698,
32.93788084569972
],
[
-116.48348500210435,
32.939932511885004
],
[
-116.48545541418328,
32.941984178070285
],
[
-116.48576011708208,
32.94373114135676
],
[
-116.48768990210785,
32.94429992010119
],
[
-116.49014783882487,
32.948565760684446
],
[
-116.49266671612163,
32.94779384667414
],
[
-116.49347925718511,
32.94842356599833
],
[
-116.49451524704105,
32.94663597565869
],
[
-116.4972372596037,
32.950211156337986
],
[
-116.49869983351795,
32.9487892094769
],
[
-116.49829356298622,
32.952689406581584
],
[
-116.49912641757628,
32.95356288822482
],
[
-116.50004052627268,
32.95340038001213
],
[
-116.49971550984729,
32.95254721189548
],
[
-116.50056867796394,
32.95187686551811
],
[
-116.50178748955916,
32.95201906020422
],
[
-116.50138121902742,
32.95352226117165
],
[
-116.5022140736175,
32.95526922445812
],
[
-116.50548455139798,
32.95797092349419
],
[
-116.50444856154205,
32.95973820030724
],
[
-116.50511890791941,
32.96126171480127
],
[
-116.50457044270156,
32.96278522929528
],
[
-116.50759715816302,
32.965771317703556
],
[
-116.50895816444434,
32.96542598775158
],
[
-116.5112129658955,
32.96774172978249
],
[
-116.51206613401214,
32.96981370949435
],
[
-116.51486940068114,
32.97210913799867
],
[
-116.51545849295215,
32.974485820609345
],
[
-116.51610852580293,
32.97340920370024
],
[
-116.51700232097276,
32.97550149693869
],
[
-116.51939931711001,
32.976131216262885
],
[
-116.51862740309971,
32.9768828167466
],
[
-116.51907430068462,
32.97804068776206
],
[
-116.5209837721838,
32.97789849307595
],
[
-116.52053687459889,
32.98011266747392
],
[
-116.5223650919917,
32.98057987858542
],
[
-116.52171505914093,
32.98220496071237
],
[
-116.52307606542225,
32.98167680902111
],
[
-116.5232995142147,
32.982692485350455
],
[
-116.52587933209125,
32.984358194530586
],
[
-116.52557462919243,
32.9860442172373
],
[
-116.52659030552178,
32.98657236892856
],
[
-116.52669187315472,
32.98844121337456
],
[
-116.52793099827652,
32.98872560274677
],
[
-116.52886542049951,
32.9900866090281
],
[
-116.5289060475527,
32.99295081627685
],
[
-116.53071395141893,
32.99445401724428
],
[
-116.53089677315822,
32.99705414864741
],
[
-116.53311094755618,
32.99989804236958
],
[
-116.53451258089068,
33.00036525348108
],
[
-116.53546731664026,
33.00454983995798
],
[
-116.53739710166603,
33.00578896507978
],
[
-116.53674706881525,
33.00733279310039
],
[
-116.53875810794734,
33.01048138972136
],
[
-116.53737678813944,
33.013081521124484
],
[
-116.53627985770375,
33.01344716460305
],
[
-116.5351219866883,
33.012390861220524
],
[
-116.53416725093871,
33.01436127329946
],
[
-116.53254216881174,
33.01354873223598
],
[
-116.53286718523714,
33.01247211532687
],
[
-116.5302873673606,
33.01285807233202
],
[
-116.5291904369249,
33.01167988778999
],
[
-116.52746378716502,
33.01235023416736
],
[
-116.52722002484597,
33.0133659104967
],
[
-116.52303543836908,
33.01129393078483
],
[
-116.52161349150799,
33.013183088757415
],
[
-116.5223650919917,
33.01354873223598
],
[
-116.52169474561434,
33.015600398421256
],
[
-116.52309637894884,
33.01921620615373
],
[
-116.52132910213578,
33.019845925477924
],
[
-116.52130878860919,
33.022567938040574
],
[
-116.5189727330517,
33.0222226080886
],
[
-116.51956182532271,
33.02366486847627
],
[
-116.515072535947,
33.0237664361092
],
[
-116.51633197459539,
33.0265697027782
],
[
-116.52147129682189,
33.028844817755925
],
[
-116.5194399441632,
33.03185121969079
],
[
-116.52185725382704,
33.03284658249355
],
[
-116.5214306697687,
33.03376069118997
],
[
-116.52331982774129,
33.035527968003024
],
[
-116.52309637894884,
33.03664521196531
],
[
-116.52199944851314,
33.036990541917284
],
[
-116.52319794658177,
33.040667290229514
],
[
-116.52204007556631,
33.04137826366006
],
[
-116.52372609827303,
33.04194704240449
],
[
-116.52356359006033,
33.04525814723816
],
[
-116.52486365576189,
33.04576598540283
],
[
-116.5237667253262,
33.05094593468249
],
[
-116.52130878860919,
33.051331891687646
],
[
-116.52086189102428,
33.05322104966022
],
[
-116.51939931711001,
33.053058541447534
],
[
-116.51862740309971,
33.054053904250296
],
[
-116.51649448280808,
33.05431798009592
],
[
-116.51454438425574,
33.05253038975627
],
[
-116.51403654609108,
33.05454142888838
],
[
-116.51458501130892,
33.05744626319031
],
[
-116.51332557266053,
33.059071345317264
],
[
-116.51184268521969,
33.05868538831211
],
[
-116.5111926523689,
33.06161053614062
],
[
-116.5118223716931,
33.063235618267576
],
[
-116.51038011130542,
33.066221706675854
],
[
-116.50800342869476,
33.066424841941725
],
[
-116.50627677893488,
33.067867102329394
],
[
-116.50556580550433,
33.06746083179765
],
[
-116.504204799223,
33.0681718052282
],
[
-116.50170623545282,
33.06744051827107
],
[
-116.50089369438933,
33.06626233372903
],
[
-116.4984560711989,
33.067582712957176
],
[
-116.49689192965171,
33.06469819218184
],
[
-116.49510433931206,
33.06394659169812
],
[
-116.49126508278714,
33.06658735015442
],
[
-116.49144790452642,
33.067968669962326
],
[
-116.4905541093566,
33.068842151605566
],
[
-116.48886808664989,
33.067481145324244
],
[
-116.48460224606663,
33.06624202020244
],
[
-116.48328186683848,
33.06725769653178
],
[
-116.48236775814208,
33.066424841941725
],
[
-116.4786097557235,
33.06792804290915
],
[
-116.47247507069424,
33.06628264725561
],
[
-116.47133751320538,
33.06792804290915
],
[
-116.46906239822763,
33.06872027044604
],
[
-116.46556847165469,
33.06849682165359
],
[
-116.47013901513675,
33.085113286401686
],
[
-116.46256206971984,
33.09329963761621
],
[
-116.47263757890694,
33.09589976901934
],
[
-116.47277977359305,
33.09760610525264
],
[
-116.46950929581256,
33.09914993327324
],
[
-116.47215005426885,
33.10140473472439
],
[
-116.47202817310934,
33.10225790284104
],
[
-116.47328761175773,
33.10246103810691
],
[
-116.47298290885891,
33.10351734148943
],
[
-116.47479081272515,
33.104065806707275
],
[
-116.47615181900647,
33.1034157738565
],
[
-116.47495332093784,
33.104451763712426
],
[
-116.47292196827915,
33.104472077239016
],
[
-116.47452673687953,
33.10530493182908
],
[
-116.47271883301329,
33.1061987269989
],
[
-116.4737751363958,
33.106483116371116
],
[
-116.4737751363958,
33.10660499753064
],
[
-116.47263757890694,
33.1066659381104
],
[
-116.4736126281831,
33.10737691154094
],
[
-116.47472987214539,
33.10693001395603
],
[
-116.47611119195331,
33.10758004680681
],
[
-116.47542053204934,
33.10731597096118
],
[
-116.47505488857078,
33.10745816564729
],
[
-116.47584711610767,
33.1080675714449
],
[
-116.47513614267713,
33.11013955115676
],
[
-116.47700498712312,
33.109266069513524
],
[
-116.47802066345247,
33.11011923763017
],
[
-116.47848787456397,
33.10894105308813
],
[
-116.48285528278015,
33.110850524587306
],
[
-116.48340374799801,
33.11139898980515
],
[
-116.48273340162064,
33.113369401884086
],
[
-116.48118957360003,
33.113735045362645
],
[
-116.48218493640279,
33.11397880768169
],
[
-116.48196148761033,
33.11497417048445
],
[
-116.48443973785393,
33.1136537912563
],
[
-116.48630858229993,
33.11397880768169
],
[
-116.48563823592256,
33.11696489608997
],
[
-116.48716175041659,
33.11726959898877
],
[
-116.48437879727418,
33.120418195609744
],
[
-116.48787272384712,
33.12015411976411
],
[
-116.48781178326736,
33.12143387193909
],
[
-116.4865320310924,
33.1221854724228
],
[
-116.48630858229993,
33.124277765661255
],
[
-116.48724300452294,
33.123688673390234
],
[
-116.48890871370305,
33.124480900927125
],
[
-116.49100100694152,
33.12413557097515
],
[
-116.4892946707082,
33.127588870494925
],
[
-116.49049316877684,
33.128157649239355
],
[
-116.49130570984032,
33.1276294975481
],
[
-116.49191511563792,
33.129620223153616
],
[
-116.49414960356248,
33.12894987677625
],
[
-116.49603876153506,
33.12730448112271
],
[
-116.4964450320668,
33.12834047097864
],
[
-116.4953684151577,
33.129945239579
],
[
-116.49701381081124,
33.134332961321775
],
[
-116.49518559341841,
33.13612055166143
],
[
-116.49679036201879,
33.13573459465628
],
[
-116.49762321660884,
33.136770584512206
],
[
-116.49859826588502,
33.13526738354478
],
[
-116.49997958569293,
33.13634400045388
],
[
-116.50034522917149,
33.13796908258084
],
[
-116.50217344656431,
33.13884256422408
],
[
-116.50387978279761,
33.13703466035784
],
[
-116.5053017296587,
33.13721748209712
],
[
-116.50647991420074,
33.13861911543162
],
[
-116.507008065892,
33.13821284489988
],
[
-116.5074752770035,
33.14229586374385
],
[
-116.50857220743919,
33.14270213427559
],
[
-116.50749559053008,
33.14294589659463
],
[
-116.50729245526422,
33.14668358548663
],
[
-116.50851126685943,
33.145688222683866
],
[
-116.50914098618362,
33.14668358548663
],
[
-116.51013634898638,
33.14676483959297
],
[
-116.51084732241692,
33.147150796598126
],
[
-116.50863314801896,
33.14682578017273
],
[
-116.50851126685943,
33.1482680405604
],
[
-116.50863314801896,
33.14847117582627
],
[
-116.51001446782686,
33.14743518597034
],
[
-116.51293961565538,
33.14891807341118
],
[
-116.51428030841012,
33.14810553234771
],
[
-116.515072535947,
33.149182149256816
],
[
-116.51686012628666,
33.14958841978855
],
[
-116.51665699102078,
33.14820709998064
],
[
-116.5194399441632,
33.14893838693777
],
[
-116.52041499343936,
33.148369608193335
],
[
-116.52084157749769,
33.15078691785718
],
[
-116.52317763305518,
33.14960873331514
],
[
-116.52508710455436,
33.15139632365479
],
[
-116.5270372031067,
33.15139632365479
],
[
-116.5261027808837,
33.152269805298026
],
[
-116.52663093257496,
33.1533870492603
],
[
-116.52886542049951,
33.154951190807495
],
[
-116.53412662388553,
33.154951190807495
],
[
-116.5374174151926,
33.15801853332212
],
[
-116.53778305867118,
33.15968424250225
],
[
-116.54194733162149,
33.16041552945938
],
[
-116.54401931133336,
33.16447823477676
],
[
-116.54338959200916,
33.167545577291385
],
[
-116.54389743017384,
33.16801278840288
],
[
-116.5430239485306,
33.16929254057786
],
[
-116.54176450988221,
33.16921128647151
],
[
-116.54145980698341,
33.171425460869486
],
[
-116.54544125819444,
33.17105981739092
],
[
-116.54700539974164,
33.17132389323655
],
[
-116.54787888138488,
33.173253678262306
],
[
-116.54966647172452,
33.17270521304446
],
[
-116.54917894708643,
33.173741202900395
],
[
-116.55003211520308,
33.17544753913369
],
[
-116.54834609249637,
33.17542722560711
],
[
-116.54773668669877,
33.17774296763802
],
[
-116.54997117462332,
33.17902271981299
],
[
-116.54940239587889,
33.179632125610595
],
[
-116.54944302293207,
33.18042435314749
],
[
-116.55056026689435,
33.17908366039275
],
[
-116.54873204950152,
33.177885162324124
],
[
-116.54899612534716,
33.17697105362771
],
[
-116.55149468911735,
33.17583349613885
],
[
-116.55273381423915,
33.176178826090826
],
[
-116.55330259298358,
33.178067984063404
],
[
-116.55803564467833,
33.180708742519705
],
[
-116.55758874709342,
33.18288228986451
],
[
-116.5591732021672,
33.18306511160379
],
[
-116.55864505047593,
33.18436517730535
],
[
-116.5613264359854,
33.1846089396244
],
[
-116.56654701231825,
33.191170208711966
],
[
-116.56492193019129,
33.192876544945264
],
[
-116.56532820072303,
33.193689086008746
],
[
-116.56343904275045,
33.19393284832779
],
[
-116.56394688091513,
33.19517197344959
],
[
-116.56250462052745,
33.19565949808768
],
[
-116.56183427415009,
33.19511103286983
],
[
-116.5610217330866,
33.19671580147019
],
[
-116.5622608582084,
33.19665486089043
],
[
-116.56268744226674,
33.197833045432475
],
[
-116.5633577886441,
33.19740646137415
],
[
-116.56291089105919,
33.19628921741187
],
[
-116.56423127028734,
33.19606576861941
],
[
-116.56459691376591,
33.19671580147019
],
[
-116.56579541183453,
33.19651266620433
],
[
-116.56589697946747,
33.197629910166604
],
[
-116.5675626886476,
33.19840182417691
],
[
-116.5681720944452,
33.1973252072678
],
[
-116.56951278719994,
33.19767053721978
],
[
-116.57069097174198,
33.19876746765547
],
[
-116.57020344710389,
33.200148787463384
],
[
-116.57308796787923,
33.197934613065414
],
[
-116.57327078961852,
33.19913311113404
],
[
-116.57455054179349,
33.19998627925069
],
[
-116.57314890845899,
33.20077850678758
],
[
-116.57430677947445,
33.20142853963836
],
[
-116.57463179589983,
33.203053621765314
],
[
-116.57325047609193,
33.20232233480819
],
[
-116.57225511328917,
33.202586410653815
],
[
-116.57260044324114,
33.203439578770464
],
[
-116.56993937125826,
33.20299268118555
],
[
-116.56813146739202,
33.20396773046173
],
[
-116.56843617029082,
33.2047802715252
],
[
-116.57184884275743,
33.20549124495574
],
[
-116.57215354565623,
33.20636472659898
],
[
-116.57381925483637,
33.20660848891802
],
[
-116.57654126739901,
33.20872109568306
],
[
-116.57786164662716,
33.208985171528695
],
[
-116.5787351282704,
33.20760385172078
],
[
-116.57977111812633,
33.210122729017556
],
[
-116.58052271861004,
33.210021161384624
],
[
-116.58247281716238,
33.21193063288379
],
[
-116.58294002827388,
33.211280600033014
],
[
-116.58342755291197,
33.21286505510679
],
[
-116.58814029108014,
33.21566832177579
],
[
-116.58822154518649,
33.21784186912059
],
[
-116.59039509253128,
33.21877629134359
],
[
-116.59169515823285,
33.218349707285256
],
[
-116.59199986113165,
33.219324756561434
],
[
-116.593015537461,
33.219507578300714
],
[
-116.59027321137177,
33.22176237975186
],
[
-116.58779496112815,
33.22159987153917
],
[
-116.58899345919679,
33.22245303965582
],
[
-116.58763245291547,
33.22385467299031
],
[
-116.58960286499439,
33.22352965656492
],
[
-116.59167484470626,
33.225520382170444
],
[
-116.5972001239379,
33.225621949803376
],
[
-116.59874395195851,
33.22663762613272
],
[
-116.59963774712833,
33.22913618990291
],
[
-116.59872363843192,
33.22968465512076
],
[
-116.59852050316606,
33.234925544980186
],
[
-116.60065342345767,
33.24205559281219
],
[
-116.6003080935057,
33.2434369126201
],
[
-116.59880489253827,
33.2446760377419
],
[
-116.59992213650055,
33.245630773491484
],
[
-116.60028777997911,
33.24843404016048
],
[
-116.59973931476127,
33.248535607793414
],
[
-116.59957680654857,
33.2490231324315
],
[
-116.6021566244251,
33.24831215900096
],
[
-116.60221756500486,
33.25168420441439
],
[
-116.61188680366024,
33.25450778460997
],
[
-116.61517759496732,
33.25420308171117
],
[
-116.61558386549906,
33.256965721326985
],
[
-116.61623389834985,
33.25708760248651
],
[
-116.61694487178039,
33.25934240393765
],
[
-116.619077792072,
33.2615972053888
],
[
-116.62155604231562,
33.261333129543175
],
[
-116.62171855052831,
33.26204410297371
],
[
-116.6204794254065,
33.26305977930306
],
[
-116.62234826985251,
33.26472548848319
],
[
-116.62563906115959,
33.266228689450614
],
[
-116.62962051237062,
33.26492862374906
],
[
-116.63146904329002,
33.2661068082911
],
[
-116.6347801481237,
33.26637088413673
],
[
-116.63644585730383,
33.26785377157757
],
[
-116.63935069160576,
33.267914712157335
],
[
-116.63985852977042,
33.269153837279134
],
[
-116.64121953605175,
33.26911321022596
],
[
-116.641747687743,
33.27063672471998
],
[
-116.64528224136913,
33.27305403438382
]
]
}
}
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment