Added examples/demo
							
								
								
									
										
											BIN
										
									
								
								tileserver/demo/abt/.DS_Store
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
							
								
								
									
										90
									
								
								tileserver/demo/abt/abt.html
									
									
									
									
									
										Normal file
									
								
							
							
						
						| @@ -0,0 +1,90 @@ | ||||
| <!doctype html> | ||||
| <html> | ||||
| <head> | ||||
|   <meta charset="utf-8"/> | ||||
|   <title>ESRI ArcGIS 9.3+ Example</title> | ||||
|   <!-- POWERED BY TILESERVER.PHP --> | ||||
|   <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0"/> | ||||
|   <meta http-equiv="X-UA-Compatible" content="chrome=1"> | ||||
|   <meta http-equiv="X-UA-Compatible" content="IE=8"> | ||||
|   <!--[if lte IE 6]> | ||||
|   <meta http-equiv="refresh" content="0; url=http://www.ie6countdown.com/" /> | ||||
|   <script type="text/javascript">window.top.location = 'http://www.ie6countdown.com/';</script> | ||||
|   <![endif]--> | ||||
|   <!--link rel="stylesheet" href="../../css/style.css" type="text/css" media="screen"--> | ||||
|   <style> | ||||
|    body {padding: 0; margin: 0; width: 100%; height: 100%; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 13px; color: #333; } | ||||
|    #header { position: fixed; top:0; left:0; width:100%; height: 45px; z-index:1200; /* box-shadow: 0px 3px 5px rgba(50, 50, 50, 0.5); */ } | ||||
|    #headershade { position: absolute; top:45px; left:0; width:100%; height: 2px; z-index:1200; background-color: rgba(50, 50, 50, 0.2); }  | ||||
|    #howto { position: absolute; top:0; padding: 60px; width:100%; height:100%; } | ||||
|    #header { overflow:hidden; background: #fff; border-bottom: 1px solid #ccc; background-color: rgba(255, 255, 255, 0.9) } | ||||
|    #footer { position: fixed; margin: 2 auto; bottom:0; left:0; width:100%; height: 15px; z-index:1200; text-align: center;} | ||||
|    #header h1 { margin:10px; margin-left:20px; font-size: 16pt; font-weight:normal; text-shadow: 1px 1px 1px #DDD; display: inline; line-height: 42px; } | ||||
|    h2 { color: #fff !important; font-size: 28px; } | ||||
|    h3 { color: #fff !important; font-size: 18px; } | ||||
|    h4 { color: #333 !important; font-size: 18px; } | ||||
|    h5 { color: #333 !important; font-size: 14px; } | ||||
|    h6 { color: #333 !important; font-size: 12px; } | ||||
|    hr { border:0; height:20px; } | ||||
|    img { box-shadow: 2px 2px 3px #aaaaaa; } | ||||
|   </style> | ||||
|   <!--script src="../../js/OpenLayers.mobile.wmts.js"></script--> | ||||
|   <script> | ||||
| // Get rid of address bar on iphone/ipod | ||||
| var fixSize = function() { | ||||
|     window.scrollTo(0,0); | ||||
|     document.body.style.height = '100%'; | ||||
|     if (!(/(iphone|ipod)/.test(navigator.userAgent.toLowerCase()))) { | ||||
|         if (document.body.parentNode) { | ||||
|             document.body.parentNode.style.height = '100%'; | ||||
|         } | ||||
|     } | ||||
| }; | ||||
| setTimeout(fixSize, 700); | ||||
| setTimeout(fixSize, 1500); | ||||
| </script> | ||||
| </head> | ||||
| <body> | ||||
| <div id="content"> | ||||
| <div id="header"> | ||||
|   <h1>TileServer OpenSource Project v0.1: Demos</h1> | ||||
|   <a href="http://localhost:8888/tileserverdemo/index.php">Usage details (APIs, WMTS, ArcGIS, etc)</a> | | ||||
|   <a href="http://localhost:8888/tileserverdemo/index.php">Message</a> | ||||
| </div> | ||||
| <div id="howto"> | ||||
| <h4>Loading tiles in ESRI ArcGIS 9.3+ through ArcBruTile</h4> | ||||
| <h5>1. Download and install the <a href="http://arcbrutile.codeplex.com/">ArcBruTile</a> add on for ESRI ArcGIS Desktop</h5> | ||||
| <h5>2. Under the ArcBruTile Menu select Add TMS Service</h5> | ||||
| <img src="abt1.jpg"> | ||||
| <br> | ||||
| <h5>3. Select Add Provider</h5> | ||||
| <img  src="abt2.jpg"> | ||||
| <br> | ||||
| <h5>4. Enter a Name and Url path to the TMS and select Add Provider</h5> | ||||
| <img src="abt3.jpg"> | ||||
| <br> | ||||
| <h5>5. Select Cancel</h5> | ||||
| <img src="abt4.jpg"> | ||||
| <br> | ||||
| <h5>6. Add a base map (either OSM or Bing) and zoom to your tiled area of interest</h5> | ||||
| <img src="abt5.jpg"> | ||||
| <br> | ||||
| <h5>7. Select Add TMS Service</h5> | ||||
| <img src="abt6.jpg"> | ||||
| <br> | ||||
| <h5>8. Select the newly entered provider and service and Add Selected Service</h5> | ||||
| <img src="abt7.jpg"> | ||||
| <br> | ||||
| <h5>9. Map tiles are displayed in ArcGIS Desktop as a service</h5> | ||||
| <img src="abt8.jpg"> | ||||
| <br> | ||||
| <br> | ||||
| <br> | ||||
| </div> | ||||
| </div> | ||||
| <div id="footer"> | ||||
| 	<a href="http://www.github.com/klokantech/tileserver.php/">TileServer.php</a> project by | ||||
| 	<a href="http://www.klokantech.com/"> Klokan Technologies</a> | ||||
| </div> | ||||
| </body> | ||||
| </html> | ||||
							
								
								
									
										
											BIN
										
									
								
								tileserver/demo/abt/abt1.jpg
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 49 KiB | 
							
								
								
									
										
											BIN
										
									
								
								tileserver/demo/abt/abt2.jpg
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 35 KiB | 
							
								
								
									
										
											BIN
										
									
								
								tileserver/demo/abt/abt3.jpg
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 30 KiB | 
							
								
								
									
										
											BIN
										
									
								
								tileserver/demo/abt/abt4.jpg
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 29 KiB | 
							
								
								
									
										
											BIN
										
									
								
								tileserver/demo/abt/abt5.jpg
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 45 KiB | 
							
								
								
									
										
											BIN
										
									
								
								tileserver/demo/abt/abt6.jpg
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 109 KiB | 
							
								
								
									
										
											BIN
										
									
								
								tileserver/demo/abt/abt7.jpg
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 31 KiB | 
							
								
								
									
										
											BIN
										
									
								
								tileserver/demo/abt/abt8.jpg
									
									
									
									
									
										Executable file
									
								
							
							
						
						| After Width: | Height: | Size: 103 KiB |