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
/************************************************************************** | |
* OSM2GEO - OSM to GeoJSON converter | |
* OSM to GeoJSON converter takes in a .osm XML file as input and produces | |
* corresponding GeoJSON object. | |
* | |
* AUTHOR: P.Arunmozhi <[email protected]> | |
* DATE : 26 / Nov / 2011 | |
* LICENSE : WTFPL - Do What The Fuck You Want To Public License | |
* LICENSE URL: http://sam.zoy.org/wtfpl/ | |
* |
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
//Class for interacting with ArcGIS Server image services | |
//Bill Dollins - Zekiah Technologies | |
//Modified from AgsDynamicLayer.js by DTSAgile | |
// http://blog.geomusings.com/2012/04/17/arcgis-image-services-and-leaflet/#more-2602 | |
L.AgsImageLayer = L.Class.extend({ | |
includes: L.Mixin.Events, | |
options: { |
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
// | |
// RMShape.h | |
// | |
// Copyright (c) 2008-2012, Route-Me Contributors | |
// All rights reserved. | |
// | |
// Redistribution and use in source and binary forms, with or without | |
// modification, are permitted provided that the following conditions are met: | |
// | |
// * Redistributions of source code must retain the above copyright notice, this |
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
var baseMap = 'mapbox.world-bright' | |
var layers = [ | |
baseMap | |
]; | |
var loadMap = function(layers) { | |
var url = 'http://api.tiles.mapbox.com/v3/' + layers + '.jsonp'; | |
wax.tilejson(url, function(tilejson) { | |
var map = new MM.Map('map', new wax.mm.connector(tilejson)); | |
map.setCenterZoom({ lat: 39, lon: -98 }, 4); |
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> | |
<head> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> | |
<title>sap.ui.ux3.Shell Test</title> | |
<script src="sapui5/resources/sap-ui-core.js" | |
type="text/javascript" | |
id="sap-ui-bootstrap" |
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
<!-- HTML --> | |
<div class="modal-dialog-background"> | |
<div class="modal-dialog"> | |
<h1>Submit</h1> | |
<div class="inner-wrapper"> | |
<p>Press submit to record your answers.</p> | |
</div> | |
<div class="buttons"> | |
<button type="button" class="cancel">Cancel</button> | |
<button type="button" class="submit">Submit</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
/****************************************************************************** | |
* | |
* SCROLLER | |
* Author: Kerri Shotts | |
* Version: 0.1 alpha | |
* License: MIT | |
* | |
* This library is intended to be similar to iScroll-lite in that it should be | |
* a relatively fast method of scrolling content without being horribly laggy | |
* or cause incorrect "clicks" to be registered. |
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
<html> | |
<head> | |
<title></title> | |
<script type="text/javascript" charset="utf-8" src="phonegap/cordova-1.6.0.js"></script> | |
<script id="sap-ui-bootstrap" | |
type="text/javascript" | |
src="sapui5/resources/sap-ui-core.js" | |
data-sap-ui-theme="sap_platinum" |
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
#outer | |
{ | |
Position: relative; | |
Top: 10px; | |
Left: 10px; | |
Width: 300px; | |
Height: 380px; | |
Overflow:hidden; | |
Border: 3px solid #000; | |
Background-Color: #145; |