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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<title>Leaflet Provider Demo</title> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.7/leaflet.css" /> |
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
# Time, Temp0, Temp1, Temp2, Temp3, Set,Actual, Heat, Fan, ColdJ, Mode | |
0.0, 50.9, 56.2, 0.0, 0.0, 171, 53.5, 0, 255, 35.5, REFLOW | |
0.2, 50.8, 56.1, 0.0, 0.0, 171, 53.4, 255, 7, 35.5, REFLOW | |
0.5, 50.8, 56.2, 0.0, 0.0, 171, 53.5, 255, 7, 35.5, REFLOW | |
0.8, 50.6, 56.2, 0.0, 0.0, 171, 53.4, 255, 7, 35.5, REFLOW | |
1.0, 50.5, 55.9, 0.0, 0.0, 171, 53.2, 255, 7, 35.5, REFLOW | |
1.2, 50.6, 55.9, 0.0, 0.0, 171, 53.2, 255, 7, 35.5, REFLOW | |
1.5, 50.4, 55.8, 0.0, 0.0, 171, 53.1, 255, 7, 35.5, REFLOW | |
1.8, 50.4, 55.8, 0.0, 0.0, 171, 53.1, 255, 7, 35.5, REFLOW | |
2.0, 50.4, 55.8, 0.0, 0.0, 171, 53.1, 255, 7, 35.5, REFLOW |
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
/* | |
* Extends L.Map to synchronize the interaction on one map to one or more other maps. | |
*/ | |
(function () { | |
'use strict'; | |
L.Map = L.Map.extend({ | |
sync: function (map, options) { | |
this._initSync(); |
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
<html> | |
<head> | |
<style> | |
h1 { | |
width: 404px; | |
margin: 10px auto; | |
clear: both; | |
} | |
.container { |
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
/* | |
* L.PolylineUtil contains utilify functions for polylines, two methods | |
* are added to the L.Polyline object to support creation of polylines | |
* from an encoded string and converting existing polylines to an | |
* encoded string. | |
* | |
* - L.Polyline.fromEncoded(encoded [, options]) returns a L.Polyline | |
* - L.Polyline.encodePath() returns a string | |
* | |
* Actual code from: |
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
/* | |
* L.PolylineUtil contains utilify functions for polylines, two methods | |
* are added to the L.Polyline object to support creation of polylines | |
* from an encoded string and converting existing polylines to an | |
* encoded string. | |
* | |
* - L.Polyline.fromEncoded(encoded [, options]) returns a L.Polyline | |
* - L.Polyline.encodePath() returns a string | |
* | |
* Actual code from: |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<link rel="stylesheet" href="http://openlayers.org/dev/theme/default/style.css" type="text/css"> | |
<link rel="stylesheet" href="http://openlayers.org/dev/examples/style.css" type="text/css"> | |
<script src="http://openlayers.org/dev/OpenLayers.js"></script> |
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
<html> | |
<head> | |
<title>Test</title> | |
<script type="text/javascript" src="http://maps.google.com/maps/api/js?libraries=geometry&sensor=false"></script> | |
<style type="text/css"> | |
#map {width:670px; height:600px;} | |
</style> | |
<script type='text/javascript'> | |
function initialize() { | |
var center = new google.maps.LatLng(51.42162000000001, -2.69789999999999); |
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
<html> | |
<head> | |
<style> | |
* { | |
-moz-box-sizing: border-box; | |
-webkit-box-sizing: border-box; | |
box-sizing: border-box; | |
} | |
h1 { | |
width: 404px; |
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
<html> | |
<head> | |
<style> | |
.center, .inner { | |
min-height: 400px; | |
} | |
.center{ | |
margin: 0px auto; | |
width: 400px; | |
border: 1px solid red; |