Skip to content

Instantly share code, notes, and snippets.

@hampelm
Last active December 9, 2015 20:36
Show Gist options
  • Save hampelm/4be733b286a409c5f11b to your computer and use it in GitHub Desktop.
Save hampelm/4be733b286a409c5f11b to your computer and use it in GitHub Desktop.
Files using REST services
ec45.js:
621
622 // Get the tract data
623: var tractLayer = L.esri.featureLayer('http://gis.mtc.ca.gov/mtc/rest/services/VitalSigns/LU_Features/FeatureServer/1', {
624 onEachFeature: setupMapInteraction,
625 simplifyFactor: 0.35,
ec4b.js:
313
314 // Get the tract data
315: var tractLayer = L.esri.featureLayer('http://gis.mtc.ca.gov/mtc/rest/services/VitalSigns/LU_Features/FeatureServer/1', {
316 onEachFeature: setupMapInteraction,
317 simplifyFactor: 0.35,
ec7b.js:
407 function setupTracts() {
408 // Get the tract data
409: tractLayer = L.esri.featureLayer('http://gis.mtc.ca.gov/mtc/rest/services/VitalSigns/LU_Features/FeatureServer/1', {
410 cacheLayers: false,
411 onEachFeature: setupInteraction,
...
421
422 function setupPoints() {
423: pointLayer = L.esri.featureLayer('http://gis.mtc.ca.gov/mtc/rest/services/VitalSigns/EC7/FeatureServer/0', {
424 cacheLayers: false,
425 radius: 25,
en4b.js:
360
361 function setupPoints() {
362: pointLayer = L.esri.featureLayer('http://gis.mtc.ca.gov/mtc/rest/services/VitalSigns/EN4_9_Safety/FeatureServer/0', {
363 cacheLayers: false,
364 radius: 25,
en7b.js:
458
459 function setupPoints() {
460: pointLayer = L.esri.featureLayer('http://gis.mtc.ca.gov/mtc/rest/services/VitalSigns/EN4_9_Safety/FeatureServer/0', {
461 cacheLayers: false,
462 radius: 25,
lu1c.js:
234
235 // Priority Development Area (PDA) feature layers
236: pda = L.esri.featureLayer('http://gis.mtc.ca.gov/mtc/rest/services/VitalSigns/LU_Features/FeatureServer/0', {
237 simplifyFactor: 0.35,
238 precision: 5,
...
241 });
242
243: pdaA = L.esri.featureLayer('http://gis.mtc.ca.gov/mtc/rest/services/VitalSigns/LU_Features/FeatureServer/5', {
244 simplifyFactor: 0.35,
245 precision: 5,
...
248 });
249
250: pdaB = L.esri.featureLayer('http://gis.mtc.ca.gov/mtc/rest/services/VitalSigns/LU_Features/FeatureServer/6', {
251 simplifyFactor: 0.35,
252 precision: 5,
...
267 /************************************************************************/
268
269: tractLayer = L.esri.featureLayer('http://gis.mtc.ca.gov/mtc/rest/services/VitalSigns/LU_Features/FeatureServer/1', {
270 cellSize: 256,
271 simplifyFactor: 0.35,
...
315 var basemap = L.mapbox.tileLayer('postcode.kh28fdpk').addTo(map);
lu2b.js:
76
77 //Feature layer for updating infopanel
78: var sub = L.esri.featureLayer('http://gis.mtc.ca.gov/mtc/rest/services/VitalSigns/LU_Features/FeatureServer/2', {
79 onEachFeature: onEachFeature2,
80 style: featureStyle
lu3b.js:
78
79 //Feature layer for updating infopanel
80: sub = L.esri.featureLayer('http://gis.mtc.ca.gov/mtc/rest/services/VitalSigns/LU_Features/FeatureServer/4', {
81 style: function() {
82 return {
lu5c.js:
30 var baseLayer = L.tileLayer('http://a.tiles.mapbox.com/v3/matth.map-zmpggdzn/{z}/{x}/{y}.png');
31 //mapt9b.addLayer(baseLayer);
32: var allLayers = 'http://gis.mtc.ca.gov/mtc/rest/services/VitalSigns/LU5_Greenfield_1992_2012/MapServer/11/query';
33
34 // When the map is clicked, display the development year.
..
211 });
@hampelm
Copy link
Author

hampelm commented Dec 9, 2015

Removed "LU1_Tracts_PDAs/MapServer" from the list of active endpoints

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment