├── .vscode └── settings.json ├── 3DGraphics.html ├── ClassBreaksRenderer.html ├── DrawMultiPoint.html ├── DrawPolygon.html ├── DrawPolyline.html ├── Drawing-DrawPoints.html ├── EventsAndMethods.html ├── FeatureLayer.html ├── FindTask.html ├── Graphics.html ├── GraphicsLayer.html ├── HeatmapRenderer.html ├── Identify.html ├── Measurement2D.html ├── QueryTask.html ├── QueryTaskContinue.html ├── README.md ├── SceneView.html ├── SearchWidget.html ├── SimpleRenderer.html ├── SimpleRenderer3D.html ├── SketchWidget.html ├── UniqueValueRenderer.html ├── UniqueValueRenderer3D.html ├── ViewUI.html ├── Widgets.html └── index.html /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /3DGraphics.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GIS Web Development - Scene View, 3d Symbol Graphics 5 | 13 | 14 | 18 | 19 | 20 | 188 | 189 | 190 |
191 | 192 | 193 | -------------------------------------------------------------------------------- /ClassBreaksRenderer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | GIS Web Development - ClassBreaksRenderer 10 | 11 | 15 | 16 | 17 | 27 | 28 | 147 | 148 | 149 | 150 |
151 | 152 | 153 | -------------------------------------------------------------------------------- /DrawMultiPoint.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GIS Web Development - Draw MultiPoint 5 | 13 | 14 | 18 | 19 | 20 | 102 | 103 | 104 |
105 |
110 | 111 |
112 |
113 | 114 | 115 | -------------------------------------------------------------------------------- /DrawPolygon.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GIS Web Development - Draw Polygon 5 | 13 | 14 | 18 | 19 | 20 | 98 | 99 | 100 |
101 |
106 | 107 |
108 |
109 | 110 | 111 | -------------------------------------------------------------------------------- /DrawPolyline.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GIS Web Development - Draw Polyline 5 | 13 | 14 | 18 | 19 | 20 | 95 | 96 | 97 |
98 |
103 | 104 |
105 |
106 | 107 | 108 | -------------------------------------------------------------------------------- /Drawing-DrawPoints.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GIS Web Development - Intro to web drawing - DrawPoints 5 | 13 | 14 | 18 | 19 | 20 | 88 | 89 | 90 |
91 |
96 | 97 |
98 |
99 | 100 | 101 | -------------------------------------------------------------------------------- /EventsAndMethods.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GIS Web Development Events And Methods 5 | 24 | 25 | 29 | 30 | 31 | 82 | 83 | 84 |
85 |
86 | 87 |
88 |
89 | 90 | 91 | -------------------------------------------------------------------------------- /FeatureLayer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GIS Web Development - FeatureLayer 5 | 13 | 14 | 18 | 19 | 20 | 76 | 77 | 78 |
79 | 80 | 81 | -------------------------------------------------------------------------------- /FindTask.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | GIS Web Development - FindTask 10 | 11 | 15 | 16 | 17 | 49 | 142 | 143 | 144 | 145 |
146 |
147 | 153 | 154 |
155 |
156 |
157 | 158 | 159 | -------------------------------------------------------------------------------- /Graphics.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GIS Web Development Graphics 5 | 23 | 24 | 28 | 29 | 30 | 174 | 175 | 176 |
177 |
178 | 179 | 180 |
181 |
182 | 183 | 184 | -------------------------------------------------------------------------------- /GraphicsLayer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GIS Web Development Graphics Layer 5 | 25 | 26 | 30 | 31 | 32 | 176 | 177 | 178 |
179 |
180 | 181 | 182 |
183 | 184 | 185 | -------------------------------------------------------------------------------- /HeatmapRenderer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GIS Web Development - HeatmapRenderer 5 | 13 | 14 | 18 | 19 | 20 | 93 | 94 | 95 |
96 | 97 | 98 | -------------------------------------------------------------------------------- /Identify.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | GIS Web Development - Identify 10 | 11 | 15 | 16 | 17 | 27 | 146 | 147 | 148 | 149 |
150 | 151 | 152 | -------------------------------------------------------------------------------- /Measurement2D.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GIS Web Development - Measurement 2D 5 | 13 | 14 | 18 | 19 | 20 | 41 | 42 | 43 |
44 | 45 | 46 | -------------------------------------------------------------------------------- /QueryTask.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GIS Web Development - QueryTask 5 | 13 | 14 | 18 | 19 | 20 | 96 | 97 | 98 |
99 | 100 | 101 | -------------------------------------------------------------------------------- /QueryTaskContinue.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | GIS Web Development - Query Task Continue 10 | 11 | 15 | 16 | 17 | 49 | 148 | 149 | 150 | 151 |
152 |
153 | 159 | 160 |
161 |
162 |
163 | 164 | 165 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | This is a GIS web development course 2 | 3 | youtube: https://www.youtube.com/playlist?list=PLS0ZQrfXlKVffcYzoweYoZb3Q1lTWpaG0 4 | 5 | By: Omar Ismail 6 | Omariuu@gmail.com 7 | -------------------------------------------------------------------------------- /SceneView.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GIS Web Development - Scene View, 3d Maps and Graphics 5 | 13 | 14 | 18 | 19 | 20 | 55 | 56 | 57 |
58 | 59 | 60 | -------------------------------------------------------------------------------- /SearchWidget.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GIS Web Development - Search Widget 5 | 13 | 14 | 18 | 19 | 20 | 119 | 120 | 121 |
122 | 123 | 124 | -------------------------------------------------------------------------------- /SimpleRenderer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GIS Web Development - SimpleRenderer 5 | 13 | 14 | 18 | 19 | 20 | 129 | 130 | 131 |
132 | 133 | 134 | -------------------------------------------------------------------------------- /SimpleRenderer3D.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GIS Web Development - SimpleRenderer 3D 5 | 13 | 14 | 18 | 19 | 20 | 132 | 133 | 134 |
135 | 136 | 137 | -------------------------------------------------------------------------------- /SketchWidget.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | GIS Web Development - Sketch widget 10 | 11 | 15 | 16 | 17 | 32 | 89 | 90 | 91 | 92 |
93 |
94 |
95 | 96 | 97 | -------------------------------------------------------------------------------- /UniqueValueRenderer.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | GIS Web Development - UniqueValueRenderer - Visualize features by type 12 | 13 | 14 | 18 | 19 | 20 | 31 | 32 | 125 | 126 | 127 | 128 |
129 | 130 | 131 | -------------------------------------------------------------------------------- /UniqueValueRenderer3D.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 11 | GIS Web Development - UniqueValueRenderer 3d - Visualize features by type 12 | 13 | 14 | 18 | 19 | 20 | 31 | 32 | 177 | 178 | 179 | 180 |
181 | 182 | 183 | -------------------------------------------------------------------------------- /ViewUI.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GIS Web Development - View UI 5 | 19 | 20 | 24 | 25 | 26 | 106 | 107 | 108 |
109 |
App Title
110 | 111 |
115 | 116 |
117 | 118 |
122 | 123 |
124 |
125 | 126 | 127 | -------------------------------------------------------------------------------- /Widgets.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GIS Web Development - Widgets 5 | 13 | 14 | 18 | 19 | 20 | 87 | 88 | 89 |
90 | 91 | 92 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | GIS Web Development 5 | 13 | 14 | 18 | 19 | 20 | 60 | 61 | 62 |
63 | 64 | 65 | --------------------------------------------------------------------------------