@@ -56,13 +56,13 @@ <h2>Maps made easy.</h2>
5656 < h3 > Documentation</ h3 >
5757 </ header >
5858 < section >
59-
60-
59+
60+
6161 < div id ="section-1 ">
62-
62+
6363 </ div >
64-
65-
64+
65+
6666 < div id ="section-2 ">
6767 < h3 > How to use jHERE</ h3 >
6868< p > Using jHERE in your websites and applications is really easy.</ p >
@@ -92,8 +92,8 @@ <h3>How to use jHERE</h3>
9292< p > < strong > Note that jHERE requires Zepto.JS, jQuery > 1.7 or Tire.js >= 1.1.1</ strong > </ p >
9393
9494 </ div >
95-
96-
95+
96+
9797 < div id ="section-3 ">
9898 < h3 > Make a map</ h3 >
9999< p > < code > $('.selector').jHERE(options);</ code > </ p >
@@ -143,8 +143,8 @@ <h3>Map events</h3>
143143< code > mapresize</ code > , < code > maptouchstart</ code > , < code > maptouchend</ code > , < code > maptouchmove</ code > .</ p >
144144
145145 </ div >
146-
147-
146+
147+
148148 < div id ="section-4 ">
149149 < h3 > Set default credentials</ h3 >
150150< p > < code > $.jHERE.defaultCredentials(appId, authToken);</ code > </ p >
@@ -153,8 +153,8 @@ <h3>Set default credentials</h3>
153153to < code > $('.selector').jHERE(options);</ code > .</ p >
154154
155155 </ div >
156-
157-
156+
157+
158158 < div id ="section-5 ">
159159 < h3 > Center the map</ h3 >
160160< p > < code > $('.selector').jHERE('center', centerObject);</ code > </ p >
@@ -164,16 +164,16 @@ <h3>Center the map</h3>
164164< p > < code > [-43, 55]</ code > </ p >
165165
166166 </ div >
167-
168-
167+
168+
169169 < div id ="section-6 ">
170170 < h3 > Zoom the map</ h3 >
171171< p > < code > $('.selector').jHERE('zoom', zoomLevel);</ code > </ p >
172172< p > < code > zoomLevel</ code > is a positive integer</ p >
173173
174174 </ div >
175-
176-
175+
176+
177177 < div id ="section-7 ">
178178 < h3 > Set the map type</ h3 >
179179< p > < code > $('.selector').jHERE('type', mapType);</ code > </ p >
@@ -190,8 +190,8 @@ <h3>Set the map type</h3>
190190</ ol >
191191
192192 </ div >
193-
194-
193+
194+
195195 < div id ="section-8 ">
196196 < h3 > Add markers to the map</ h3 >
197197< p > < code > $('.selector').jHERE('marker', positionObject, markerOptions);</ code > </ p >
@@ -219,15 +219,15 @@ <h3>Add markers to the map</h3>
219219All parameters are < strong > optional</ strong > .</ p >
220220
221221 </ div >
222-
223-
222+
223+
224224 < div id ="section-9 ">
225225 < h3 > Remove all the markers from the map</ h3 >
226226< p > < code > $('.selector').jHERE('nomarkers');</ code > </ p >
227227
228228 </ div >
229-
230-
229+
230+
231231 < div id ="section-10 ">
232232 < h3 > Add bubbles to the map</ h3 >
233233< p > < code > $('.selector').jHERE('bubble', positionObject, bubbleOptions);</ code > </ p >
@@ -245,15 +245,15 @@ <h3>Add bubbles to the map</h3>
245245< p > < code > content</ code > can be a String or a jQuery object.</ p >
246246
247247 </ div >
248-
249-
248+
249+
250250 < div id ="section-11 ">
251251 < h3 > Remove all the bubbles from the map</ h3 >
252252< p > < code > $('.selector').jHERE('nobubbles');</ code > </ p >
253253
254254 </ div >
255-
256-
255+
256+
257257 < div id ="section-12 ">
258258 < h3 > Display KMLs on the map</ h3 >
259259< p > < code > $('.selector').jHERE('kml', KMLfile, zoomToKML, ondone);</ code > </ p >
@@ -266,8 +266,8 @@ <h3>Display KMLs on the map</h3>
266266the KML file has < a href ="http://en.wikipedia.org/wiki/Cross-origin_resource_sharing "> CORS</ a > enabled.</ p >
267267
268268 </ div >
269-
270-
269+
270+
271271 < div id ="section-13 ">
272272 < h3 > Add heatmap layers to the map</ h3 >
273273< p > < code > $('.selector').jHERE('heatmap', data, type, options);</ code > </ p >
@@ -287,8 +287,8 @@ <h3>Add heatmap layers to the map</h3>
287287}</ code > </ pre >
288288
289289 </ div >
290-
291-
290+
291+
292292 < div id ="section-14 ">
293293 < h3 > Access the underlying HERE JavaScript API framework</ h3 >
294294< p > < code > $('.selector').jHERE('originalMap', closure);</ code > </ p >
@@ -304,8 +304,8 @@ <h3>Access the underlying HERE JavaScript API framework</h3>
304304}</ code > </ pre >
305305
306306 </ div >
307-
308-
307+
308+
309309 < div id ="section-15 ">
310310 < h3 > Inspect map properties</ h3 >
311311< p > < code > var properties = $('.selector').jHERE();</ code > </ p >
@@ -329,8 +329,8 @@ <h3>Inspect map properties</h3>
329329< strong > Note that these properties will all be undefined if the map hasn't been yet initialized.</ strong > </ p >
330330
331331 </ div >
332-
333-
332+
333+
334334 < div id ="section-16 ">
335335 < h3 > Extend jHERE</ h3 >
336336< p > jHERE can be easily extended with additional features. Some example of
@@ -349,7 +349,7 @@ <h3>Extend jHERE</h3>
349349< p > A good example of extension is the < a href ="https://github.com/mmarcon/jhere/blob/master/src/extensions/route.js "> routing extension</ a > .</ p >
350350
351351 </ div >
352-
352+
353353 </ section >
354354 </ section >
355355
@@ -361,7 +361,8 @@ <h3>Extend jHERE</h3>
361361 < li class ="facebook "> < div class ="fb-like " data-href ="http://jhere.net " data-send ="false " data-layout ="button_count " data-width ="450 " data-show-faces ="false " data-font ="lucida grande "> </ div > </ li >
362362 </ ul >
363363
364- < small > Massimiliano Marcon © 2012-13</ small >
364+ < small id ="notes "> Supported by < a href ="https://www.browserstack.com " title ="BrowserStack - Live, Web-Based Browser Testing on all desktop and mobile browsers "> BrowserStack</ a > and < a href ="https://www.digitalocean.com/ " title ="imple Cloud Hosting,
365+ Built for Developers. "> DigitalOcean</ a > - Massimiliano Marcon © 2012-15</ small >
365366 </ footer >
366367
367368 < script src ="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js "> </ script >
0 commit comments