from danny
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://rawgit.com/Esri/Terraformer/master/terraformer.js"></script> | |
<script src="https://rawgit.com/Esri/terraformer-arcgis-parser/master/terraformer-arcgis-parser.js"></script> | |
<!-- CDN or locally hosted is ideal but I'm using raw github so that we get error reporting within the unminified source | |
<script src="http://cdn-geoweb.s3.amazonaws.com/terraformer/1.0.4/terraformer.min.js"></script> | |
<script src="http://cdn-geoweb.s3.amazonaws.com/terraformer-arcgis-parser/1.0.4/terraformer-arcgis-parser.min.js"></script> | |
--> | |
<script> | |
var input = { | |
"x": -66.796875, | |
"y": 20.0390625, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var parser = require('terraformer-arcgis-parser'); | |
var geo = { | |
"rings" : [ | |
[ | |
[-12451802.5859375, 3951471.76953125], | |
[-12451799.640625, 3951711.375], | |
[-12451797.6171875, 3951873.84765625], | |
[-12451794.78125, 3952103.45703125], | |
[-12451790.6171875, 3952439.73046875], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<tailcoat-modal> | |
<tailcoat-modal-btn>Kill All Humans</tailcoat-modal-btn> | |
<tailcoat-modal-content> | |
<h2>Do you really want to kill all humans?</h2> | |
<button class="btn primary" ng-click="killAllHumans()">Yes</button> | |
<button class="btn cancel" ng-click="killAllHumans()">Definitely</button> | |
</tailcoat-modal-content> | |
</tailcoat-modal> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<body style="background-attachment: fixed;" vlink="red" alink="#ff0000" background="http://www.alfran.es/images/sowa.jpg" bgcolor="black" lang="EN-US" link="#646464"><p align="center"> </p> | |
</object> | |
<html> | |
<head> | |
<SCRIPT language=JavaScript> | |
<!-- | |
function clickhandler() { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var obj = { | |
a: { | |
b: { | |
c: 'yay' | |
} | |
} | |
}; | |
var path = ['a','b','c']; |