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
| /** | |
| * Defines the component lifecycle-ish? (maybe HtmlTag in dom.ts is a parital implementation?) | |
| * Relates to chunks in Block.ts | |
| */ | |
| interface Fragment { | |
| key: string|null; | |
| first: null; | |
| /* create */ c: () => void; | |
| /* claim */ l: (nodes: any) => void; | |
| /* hydrate */ h: () => void; |
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
| export class MyApp { | |
| execute() { | |
| return true; | |
| } | |
| } |
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
| import ol = require("ol2"); | |
| export type GeoJsonGeometry = { | |
| type: "point"; | |
| coordinates: number[]; | |
| } | { | |
| type: "multipoint"; | |
| coordinates: number[][]; | |
| } | { | |
| type: "linestring"; |
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
| // from https://gist.github.com/mitch-cohen/9547514 | |
| export function toJson(WKTstr: string) { | |
| // trim leading "(" and trailing ")" characters | |
| function unbracket(str: string) { | |
| let left = str.indexOf("(") + 1; | |
| let right = str.lastIndexOf(")"); | |
| if (right < str.length - 1) right = str.length; | |
| return str.substring(left, right); | |
| } |
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
| class ResolutionWatcher extends ol.control.Control { | |
| private element: HTMLElement; | |
| constructor(options?: olx.control.ControlOptions & { | |
| className?: string; | |
| render?: Function; | |
| }) { | |
| options = _.defaults(options || {}, { | |
| element: document.createElement("div"), |
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
| import dojoDeclare = require("dojo/_base/declare"); | |
| import DynamicMapServiceLayer = require("esri/layers/DynamicMapServiceLayer"); | |
| import TiledMapServiceLayer = require("esri/layers/TiledMapServiceLayer"); | |
| import Stateful = require("dojo/Stateful"); | |
| import lang = require("dojo/_base/lang"); | |
| import infor = require("../../../gis.map.ext"); | |
| import { MapExtent } from "../../../models"; | |
| import * as Models from "../../../models"; | |
| import Extent = require("esri/geometry/Extent"); | |
| import TileInfo = require("esri/layers/TileInfo"); |
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
| using System; | |
| using System.Xml.Serialization; | |
| using System.Collections.Generic; | |
| namespace Xml2CSharp | |
| { | |
| [XmlRoot(ElementName="KeywordList", Namespace="http://www.opengis.net/wms")] | |
| public class KeywordList { | |
| [XmlElement(ElementName="Keyword", Namespace="http://www.opengis.net/wms")] | |
| public List<string> Keyword { get; set; } | |
| } |
This file has been truncated, but you can view the full file.
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
| <Maplet id="ips-base"> | |
| <MAP> | |
| <SYMBOLOGY iconheight="48" iconwidth="48"> | |
| <SYMBOL about="imported from *" id="*" label="[PrettyName] Key# [PrimaryKey]" template="[PrettyName] Key# [PrimaryKey]"> | |
| <ICON about="imported from MapPin.png" height="0" id="MapPin.png" style="MapPin.png" type="file" width="0"> | |
| <FILTERS> | |
| <FILTER about="IPS Moniker filter" key="moniker" value="*" /> | |
| </FILTERS> | |
| </ICON> | |
| </SYMBOL> |
Schedule
Schedule
| Day | Field | Yellow Team | Blue Team |
|---|---|---|---|
| 9/30/2017 | 1 at 9 AM | Andy Taylor | Joseph Haire |
| 9/30/2017 | 1 at 9 AM | Eli Whitesell | Alec Smith |
| 9/30/2017 | 2 at 9 AM | Brett Boyd | Matt Staab |