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 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
(function(f){if(typeof exports==="object"&&typeof module!=="undefined"){module.exports=f()}else if(typeof define==="function"&&define.amd){define([],f)}else{var g;if(typeof window!=="undefined"){g=window}else if(typeof global!=="undefined"){g=global}else if(typeof self!=="undefined"){g=self}else{g=this}g.geojsonvt = f()}})(function(){var define,module,exports;return (function e(t,n,r){function s(o,u){if(!n[o]){if(!t[o]){var a=typeof require=="function"&&require;if(!u&&a)return a(o,!0);if(i)return i(o,!0);var f=new Error("Cannot find module '"+o+"'");throw f.code="MODULE_NOT_FOUND",f}var l=n[o]={exports:{}};t[o][0].call(l.exports,function(e){var n=t[o][1][e];return s(n?n:e)},l,l.exports,e,t,n,r)}return n[o].exports}var i=typeof require=="function"&&require;for(var o=0;o<r.length;o++)s(r[o]);return s})({1:[function(require,module,exports){ | |
'use strict'; | |
module.exports = clip; | |
/* clip features between two axis-parallel lines: | |
* | | | |
* ___|___ | / | |
* / | \____|____/ | |
* | | |
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
L.CanvasTiles = L.TileLayer.Canvas.extend({ | |
initialize: function (userDrawFunc, options,callContext) { | |
this._userDrawFunc = userDrawFunc; | |
this._callContext = callContext; | |
L.setOptions(this, options); | |
var self = this; | |
this.drawTile = function (tileCanvas, tilePoint, zoom) { | |
This file has been truncated, but you can view the full file.
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
{"type":"Topology","arcs":[[[63091,107952],[35,-48],[32,-82],[-4,-38],[-41,48],[-39,63],[-18,15],[6,100],[29,-58]],[[143988,135137],[22,1],[38,-35],[36,-53],[67,-48],[17,-78],[-17,-100],[-36,-119],[-9,-51],[49,-59],[21,20],[70,35],[21,-2],[35,-48],[-4,-87],[-31,-39],[2,-73],[-25,-150],[8,-85],[-14,-81],[6,-85],[-6,-65],[-21,-53],[-11,-157],[17,-59],[2,-66],[37,-97],[14,-91],[33,-68],[24,-19],[55,-9],[51,22],[166,182],[77,100],[83,42],[40,-10],[19,14],[86,19],[59,167],[40,55],[41,15],[54,58],[41,6],[28,57],[31,41],[23,0],[37,54],[26,8],[33,-15],[36,28],[25,2],[109,-53],[45,-3],[-4,-79],[-32,-50],[-34,-10],[-19,-36],[11,-30],[36,10],[23,-27],[45,12],[22,30],[36,9],[87,49],[64,19],[25,27],[10,50],[132,-10],[43,-19],[59,5],[16,14],[74,-66],[42,-91],[-45,-26],[-23,72],[-13,10],[-56,-71],[-19,14],[-59,-19],[-17,-51],[-43,-6],[-9,-25],[27,-42],[36,-26],[42,-78],[-16,-53],[-26,43],[-47,-6],[-105,-104],[-55,-6],[-12,-61],[-34,-17],[-51,16],[-47,44],[-53,21],[-76,5],[-75,-19],[-36,8],[-66,-5],[-28,-15],[-52,10],[-86,-1 |
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 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
<template> | |
<div> | |
<template v-if="photo"> | |
<img :src="photo.url" :id="photo.filename" class="img-fluid thumbnail rounded" :alt="photo.title" /> | |
<h1 class="h3">{{ photo.title }}</h1> | |
<Tags :photo="photo" /> | |
<p>Share edit close delete flag</p> | |
<p>Viewed 23 times</p> | |
<b-button variant="link" class="text-success mb-2" v-if="photo.status == 'Solved'"> <b-icon icon="check-circle" aria-hidden="true"></b-icon> Solved! </b-button> | |
<b-button |
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
<template> | |
<section> | |
<img | |
:id="photo.filename" | |
:src="photo.url" | |
/> | |
</section> | |
</template> | |
<script> |