Created
August 23, 2017 11:09
-
-
Save Spaxe/f44a70e726b6eae13656f7ac7579de67 to your computer and use it in GitHub Desktop.
This version works
This file contains 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
<!DOCTYPE html> | |
<html> | |
<body> | |
<script src="https://unpkg.com/[email protected]/dist/geobuf.js"></script> | |
<script src="https://unpkg.com/[email protected]/dist/pbf.js"></script> | |
<script> | |
const data = { | |
"type": "FeatureCollection", | |
"features": [ | |
{ | |
"geometry": { | |
"coordinates": [ | |
[ | |
[ | |
138.674968, | |
-34.811527 | |
], | |
[ | |
138.674792, | |
-34.811596 | |
] | |
] | |
], | |
"type": "MultiLineString" | |
}, | |
"properties": { | |
"id": 1, | |
}, | |
"type": "Feature" | |
} | |
] | |
}; | |
</script> | |
<script> | |
const encoded = geobuf.encode(data, new Pbf()); | |
console.log(encoded); | |
const buf = new Pbf(encoded); | |
console.log(buf); | |
const geojson = geobuf.decode(buf); | |
console.log(geojson); // <- seems to work | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Unimplemented type: 3