Guest User

Untitled

a guest
Nov 17th, 2018
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. new ol.layer.Tile({
  2. source:new ol.source.VectorTile({
  3. format: new ol.format.MVT(),
  4. url:"rectangle-1.0.0.pbf"
  5. })
  6. })
  7.  
  8. style: function(feature, res) {
  9. return new ol.style.Style({
  10. stroke: new ol.style.Stroke({
  11. width: 2,
  12. color: 'rgba(0, 102, 204)'
  13. })
  14. })
  15. },
  16.  
  17. new ol.layer.VectorTile({
  18. source:new ol.source.VectorTile({
  19. format: new ol.format.MVT(),
  20. url:"rectangle-1.0.0.pbf"
  21. })
  22. })
Add Comment
Please, Sign In to add comment