Last Updated: January 10, 2025
By downloading, installing, or using Whisperr ("the App"), you agree to be bound by these Terms of Use. If you do not agree to these terms, please do not use the App.
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Swipe between maps</title> | |
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no"> | |
<link href="https://api.mapbox.com/mapbox-gl-js/v2.4.1/mapbox-gl.css" rel="stylesheet"> | |
<script src="https://api.mapbox.com/mapbox-gl-js/v2.4.1/mapbox-gl.js"></script> | |
<style> | |
body { margin: 0; padding: 0; } |
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8"> | |
<title>Swipe between maps</title> | |
<meta name="viewport" content="initial-scale=1,maximum-scale=1,user-scalable=no"> | |
<link href="https://api.mapbox.com/mapbox-gl-js/v2.4.1/mapbox-gl.css" rel="stylesheet"> | |
<script src="https://api.mapbox.com/mapbox-gl-js/v2.4.1/mapbox-gl.js"></script> | |
<style> | |
body { margin: 0; padding: 0; } |
Test
データソース: 国土交通省
############################ | |
# STEP 1 build executable binary | |
############################ | |
FROM golang:1.11-alpine as builder | |
ARG SSH_PRIVATE_KEY | |
RUN apk update \ | |
&& apk add openssh \ | |
&& apk add git mercurial \ |
# stage: 1 | |
FROM node:11-alpine AS build | |
ARG GATSBY_API_BASE_HOST | |
ENV GATSBY_API_BASE_HOST $GATSBY_API_BASE_HOST | |
ARG GATSBY_BASE_URL | |
ENV GATSBY_BASE_URL $GATSBY_BASE_URL |
function curry(/*arguments*/) { | |
function getArgs(args) { | |
return [].slice.call(args); | |
} | |
function method() { | |
return arguments; | |
} | |
"use strict" | |
class EventSystem{ | |
constructor() { | |
this.queue = {}; | |
this.maxNamespaceSize = 50; | |
} |