Changeset 6675
- Timestamp:
- 03/28/08 20:52:05 (10 months ago)
- Files:
-
- sandbox/euzuro/pop/examples/popupMatrix.html (modified) (112 diffs)
- sandbox/euzuro/pop/examples/popups.html (modified) (1 diff)
- sandbox/euzuro/pop/examples/sundials.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
sandbox/euzuro/pop/examples/popupMatrix.html
r6646 r6675 18 18 var map; 19 19 var layer, markers; 20 21 var samplePopupContentsHTML = "Old man down, way down down, down by the docks of the city.<br>Blind and dirty, asked me for a dime, a dime for a cup of coffee.<br>I got no dime but I got some time to hear his story.<br>My name is August West, and I love my Pearly Baker best more than my wine.<br>More than my wine - more than my maker, though he's no friend of mine.<br><br>Everyone said, I'd come to no good, I knew I would Pearly, believe them.<br>Half of my life, I spent doin' time for some other fucker's crime,<br>The other half found me stumbling 'round drunk on Burgundy wine.<br><br>But I'll get back on my feet again someday,<br>The good Lord willin', if He says I may.<br>I know that the life i'm livin's no good,<br>I'll get a new start, live the life I should.<br>I'll get up and fly away, I'll get up and fly away, fly away.<br><br>Pearly's been true, true to me, true to my dyin' day he said,<br>I said to him, I said to him, I'm sure she's been.<br>I said to him, I'm sure she's been tru to you.<br><br>Got up and wandered, wandered downtown, nowhere to go but just hang around.<br>I've got a girl, named Bonnie Lee, I know that girl's been true to me.<br>I know she's been, I'm sure she's been true to me.<br><br>";22 var samplePopupContentsHTML_WideShort = "Old man down, way down down, down by the docks of the city.Blind and dirty, asked me for a dime, a dime for a cup of coffee.I got no dime but I got some time to hear his story.My name is August West, and I love my Pearly Baker best more than my wine.More than my wine - more than my maker, though he's no friend of mine.Everyone said, I'd come to no good, I knew I would Pearly, believe them.<br>Half of my life, I spent doin' time for some other fucker's crime,The other half found me stumbling 'round drunk on Burgundy wine.But I'll get back on my feet again someday,The good Lord willin', if He says I may.I know that the life i'm livin's no good,I'll get a new start, live the life I should.I'll get up and fly away, I'll get up and fly away, fly away.Pearly's been true, true to me, true to my dyin' day he said,I said to him, I said to him, I'm sure she's been.I said to him, I'm sure she's been tru to you.Got up and wandered, wandered downtown, nowhere to go but just hang around.I've got a girl, named Bonnie Lee, I know that girl's been true to me.I know she's been, I'm sure she's been true to me.";23 20 21 var samplePopupContentsHTML = "Old man down, way down down, down by the docks of the city.<br>Blind and dirty, asked me for a dime, a dime for a cup of coffee.<br>I got no dime but I got some time to hear his story.<br>My name is August West, and I love my Pearly Baker best more than my wine.<br>More than my wine - more than my maker, though he's no friend of mine.<br><br>Everyone said, I'd come to no good, I knew I would Pearly, believe them.<br>Half of my life, I spent doin' time for some other fucker's crime,<br>The other half found me stumbling 'round drunk on Burgundy wine.<br><br>But I'll get back on my feet again someday,<br>The good Lord willin', if He says I may.<br>I know that the life i'm livin's no good,<br>I'll get a new start, live the life I should.<br>I'll get up and fly away, I'll get up and fly away, fly away.<br><br>Pearly's been true, true to me, true to my dyin' day he said,<br>I said to him, I said to him, I'm sure she's been.<br>I said to him, I'm sure she's been tru to you.<br><br>Got up and wandered, wandered downtown, nowhere to go but just hang around.<br>I've got a girl, named Bonnie Lee, I know that girl's been true to me.<br>I know she's been, I'm sure she's been true to me.<br><br>"; 22 var samplePopupContentsHTML_WideShort = "Old man down, way down down, down by the docks of the city.Blind and dirty, asked me for a dime, a dime for a cup of coffee.I got no dime but I got some time to hear his story.My name is August West, and I love my Pearly Baker best more than my wine.More than my wine - more than my maker, though he's no friend of mine.Everyone said, I'd come to no good, I knew I would Pearly, believe them.<br>Half of my life, I spent doin' time for some other fucker's crime,The other half found me stumbling 'round drunk on Burgundy wine.But I'll get back on my feet again someday,The good Lord willin', if He says I may.I know that the life i'm livin's no good,I'll get a new start, live the life I should.I'll get up and fly away, I'll get up and fly away, fly away.Pearly's been true, true to me, true to my dyin' day he said,I said to him, I said to him, I'm sure she's been.I said to him, I'm sure she's been tru to you.Got up and wandered, wandered downtown, nowhere to go but just hang around.I've got a girl, named Bonnie Lee, I know that girl's been true to me.I know she's been, I'm sure she's been true to me."; 23 24 24 // different popup types 25 25 26 //anchored27 AutoSizeAnchored = OpenLayers.Class(OpenLayers.Popup.Anchored, {28 'autoSize': true29 });30 31 AutoSizeAnchoredMinSize = OpenLayers.Class(OpenLayers.Popup.Anchored, {32 'autoSize': true,33 'minSize': new OpenLayers.Size(400,400)34 });35 36 AutoSizeAnchoredMaxSize = OpenLayers.Class(OpenLayers.Popup.Anchored, {37 'autoSize': true,38 'maxSize': new OpenLayers.Size(100,100)39 });40 41 //anchoredbubble42 43 AutoSizeAnchoredBubble = OpenLayers.Class(OpenLayers.Popup.AnchoredBubble, {44 'autoSize': true45 });46 47 AutoSizeAnchoredBubbleMinSize = OpenLayers.Class(OpenLayers.Popup.AnchoredBubble, {48 'autoSize': true,49 'minSize': new OpenLayers.Size(400,400)50 });51 52 AutoSizeAnchoredBubbleMaxSize = OpenLayers.Class(OpenLayers.Popup.AnchoredBubble, {53 'autoSize': true,54 'maxSize': new OpenLayers.Size(100,100)55 });56 57 //framed58 59 //disable the autosize for the purpose of our matrix60 OpenLayers.Popup.FramedCloud.prototype.autoSize = false;61 62 AutoSizeFramedCloud = OpenLayers.Class(OpenLayers.Popup.FramedCloud, {63 'autoSize': true64 });65 66 AutoSizeFramedCloudMinSize = OpenLayers.Class(OpenLayers.Popup.FramedCloud, {67 'autoSize': true,68 'minSize': new OpenLayers.Size(400,400)69 });70 71 AutoSizeFramedCloudMaxSize = OpenLayers.Class(OpenLayers.Popup.FramedCloud, {72 'autoSize': true,73 'maxSize': new OpenLayers.Size(100,100)74 });26 //anchored 27 AutoSizeAnchored = OpenLayers.Class(OpenLayers.Popup.Anchored, { 28 'autoSize': true 29 }); 30 31 AutoSizeAnchoredMinSize = OpenLayers.Class(OpenLayers.Popup.Anchored, { 32 'autoSize': true, 33 'minSize': new OpenLayers.Size(400,400) 34 }); 35 36 AutoSizeAnchoredMaxSize = OpenLayers.Class(OpenLayers.Popup.Anchored, { 37 'autoSize': true, 38 'maxSize': new OpenLayers.Size(100,100) 39 }); 40 41 //anchoredbubble 42 43 AutoSizeAnchoredBubble = OpenLayers.Class(OpenLayers.Popup.AnchoredBubble, { 44 'autoSize': true 45 }); 46 47 AutoSizeAnchoredBubbleMinSize = OpenLayers.Class(OpenLayers.Popup.AnchoredBubble, { 48 'autoSize': true, 49 'minSize': new OpenLayers.Size(400,400) 50 }); 51 52 AutoSizeAnchoredBubbleMaxSize = OpenLayers.Class(OpenLayers.Popup.AnchoredBubble, { 53 'autoSize': true, 54 'maxSize': new OpenLayers.Size(100,100) 55 }); 56 57 //framed 58 59 //disable the autosize for the purpose of our matrix 60 OpenLayers.Popup.FramedCloud.prototype.autoSize = false; 61 62 AutoSizeFramedCloud = OpenLayers.Class(OpenLayers.Popup.FramedCloud, { 63 'autoSize': true 64 }); 65 66 AutoSizeFramedCloudMinSize = OpenLayers.Class(OpenLayers.Popup.FramedCloud, { 67 'autoSize': true, 68 'minSize': new OpenLayers.Size(400,400) 69 }); 70 71 AutoSizeFramedCloudMaxSize = OpenLayers.Class(OpenLayers.Popup.FramedCloud, { 72 'autoSize': true, 73 'maxSize': new OpenLayers.Size(100,100) 74 }); 75 75 76 76 … … 78 78 map = new OpenLayers.Map('map'); 79 79 80 layer = new OpenLayers.Layer.Image(81 "popupMatrix",82 "popupMatrix.jpg",83 new OpenLayers.Bounds(-82.5,-71.5,97.5,67.5),84 new OpenLayers.Size(1024,768)85 );80 layer = new OpenLayers.Layer.Image( 81 "popupMatrix", 82 "popupMatrix.jpg", 83 new OpenLayers.Bounds(-82.5,-71.5,97.5,67.5), 84 new OpenLayers.Size(1024,768) 85 ); 86 86 map.addLayer(layer); 87 87 … … 97 97 function addMarkers() { 98 98 99 var ll, popupClass, popupContentHTML;100 101 // 102 //Anchored NO OVERFLOW103 // 104 105 //anchored popup small contents no autosize99 var ll, popupClass, popupContentHTML; 100 101 // 102 //Anchored NO OVERFLOW 103 // 104 105 //anchored popup small contents no autosize 106 106 ll = new OpenLayers.LonLat(-55,20); 107 107 popupClass = OpenLayers.Popup.Anchored; … … 109 109 addMarker(ll, popupClass, popupContentHTML); 110 110 111 //anchored popup small contents no autosize closebox111 //anchored popup small contents no autosize closebox 112 112 var ll = new OpenLayers.LonLat(-50,20); 113 113 popupClass = OpenLayers.Popup.Anchored; … … 116 116 117 117 118 //anchored popup small contents autosize118 //anchored popup small contents autosize 119 119 ll = new OpenLayers.LonLat(-40,20); 120 120 popupClass = AutoSizeAnchored; … … 122 122 addMarker(ll, popupClass, popupContentHTML); 123 123 124 //anchored popup small contents autosize closebox124 //anchored popup small contents autosize closebox 125 125 ll = new OpenLayers.LonLat(-35,20); 126 126 popupClass = AutoSizeAnchored; … … 129 129 130 130 131 //anchored popup small contents autosize minsize131 //anchored popup small contents autosize minsize 132 132 ll = new OpenLayers.LonLat(-25,20); 133 133 popupClass = AutoSizeAnchoredMinSize; … … 135 135 addMarker(ll, popupClass, popupContentHTML); 136 136 137 //anchored popup small contents autosize minsize closebox137 //anchored popup small contents autosize minsize closebox 138 138 ll = new OpenLayers.LonLat(-20,20); 139 139 popupClass = AutoSizeAnchoredMinSize; … … 142 142 143 143 144 //anchored popup small contents autosize maxsize144 //anchored popup small contents autosize maxsize 145 145 ll = new OpenLayers.LonLat(-10,20); 146 146 popupClass = AutoSizeAnchoredMaxSize; … … 148 148 addMarker(ll, popupClass, popupContentHTML); 149 149 150 //anchored popup small contents autosize maxsize closebox150 //anchored popup small contents autosize maxsize closebox 151 151 ll = new OpenLayers.LonLat(-5,20); 152 152 popupClass = AutoSizeAnchoredMaxSize; … … 155 155 156 156 157 //anchored popup bigger contents autosize157 //anchored popup bigger contents autosize 158 158 ll = new OpenLayers.LonLat(5,20); 159 159 popupClass = AutoSizeAnchored; … … 161 161 addMarker(ll, popupClass, popupContentHTML); 162 162 163 //anchored popup bigger contents autosize closebox163 //anchored popup bigger contents autosize closebox 164 164 ll = new OpenLayers.LonLat(10,20); 165 165 popupClass = AutoSizeAnchored; … … 167 167 addMarker(ll, popupClass, popupContentHTML, true); 168 168 169 //anchored popup wide short text contents autosize169 //anchored popup wide short text contents autosize 170 170 ll = new OpenLayers.LonLat(20,20); 171 171 popupClass = AutoSizeAnchored; … … 173 173 addMarker(ll, popupClass, popupContentHTML); 174 174 175 //anchored popup wide short text contents autosize closebox175 //anchored popup wide short text contents autosize closebox 176 176 ll = new OpenLayers.LonLat(25,20); 177 177 popupClass = AutoSizeAnchored; … … 180 180 181 181 182 //anchored popup wide short fixed contents autosize182 //anchored popup wide short fixed contents autosize 183 183 ll = new OpenLayers.LonLat(35,20); 184 184 popupClass = AutoSizeAnchored; … … 186 186 addMarker(ll, popupClass, popupContentHTML); 187 187 188 //anchored popup wide short fixed contents autosize closebox188 //anchored popup wide short fixed contents autosize closebox 189 189 ll = new OpenLayers.LonLat(40,20); 190 190 popupClass = AutoSizeAnchored; … … 193 193 194 194 195 //anchored popup thin long fixed contents autosize195 //anchored popup thin long fixed contents autosize 196 196 ll = new OpenLayers.LonLat(50,20); 197 197 popupClass = AutoSizeAnchored; … … 199 199 addMarker(ll, popupClass, popupContentHTML); 200 200 201 //anchored popup thin long fixed contents autosize closebox201 //anchored popup thin long fixed contents autosize closebox 202 202 ll = new OpenLayers.LonLat(55,20); 203 203 popupClass = AutoSizeAnchored; … … 206 206 207 207 208 //anchored popup wide long fixed contents autosize208 //anchored popup wide long fixed contents autosize 209 209 ll = new OpenLayers.LonLat(65,20); 210 210 popupClass = AutoSizeAnchored; … … 212 212 addMarker(ll, popupClass, popupContentHTML); 213 213 214 //anchored popup wide long fixed contents autosize closebox214 //anchored popup wide long fixed contents autosize closebox 215 215 ll = new OpenLayers.LonLat(70,20); 216 216 popupClass = AutoSizeAnchored; … … 219 219 220 220 // 221 //Anchored WITH OVERFLOW222 // 223 224 //anchored popup small contents no autosize overflow221 //Anchored WITH OVERFLOW 222 // 223 224 //anchored popup small contents no autosize overflow 225 225 var ll = new OpenLayers.LonLat(-55,15); 226 226 popupClass = OpenLayers.Popup.Anchored; … … 228 228 addMarker(ll, popupClass, popupContentHTML, false, true); 229 229 230 //anchored popup small contents no autosize closebox overflow230 //anchored popup small contents no autosize closebox overflow 231 231 var ll = new OpenLayers.LonLat(-50,15); 232 232 popupClass = OpenLayers.Popup.Anchored; … … 235 235 236 236 237 //anchored popup small contents autosize overflow237 //anchored popup small contents autosize overflow 238 238 ll = new OpenLayers.LonLat(-40,15); 239 239 popupClass = AutoSizeAnchored; … … 241 241 addMarker(ll, popupClass, popupContentHTML, false, true); 242 242 243 //anchored popup small contents autosize closebox overflow243 //anchored popup small contents autosize closebox overflow 244 244 ll = new OpenLayers.LonLat(-35,15); 245 245 popupClass = AutoSizeAnchored; … … 248 248 249 249 250 //anchored popup small contents autosize minsize overflow250 //anchored popup small contents autosize minsize overflow 251 251 ll = new OpenLayers.LonLat(-25,15); 252 252 popupClass = AutoSizeAnchoredMinSize; … … 254 254 addMarker(ll, popupClass, popupContentHTML, false, true); 255 255 256 //anchored popup small contents autosize minsize closebox overflow256 //anchored popup small contents autosize minsize closebox overflow 257 257 ll = new OpenLayers.LonLat(-20,15); 258 258 popupClass = AutoSizeAnchoredMinSize; … … 261 261 262 262 263 //anchored popup small contents autosize maxsize overflow263 //anchored popup small contents autosize maxsize overflow 264 264 ll = new OpenLayers.LonLat(-10,15); 265 265 popupClass = AutoSizeAnchoredMaxSize; … … 267 267 addMarker(ll, popupClass, popupContentHTML, false, true); 268 268 269 //anchored popup small contents autosize maxsize closebox overflow269 //anchored popup small contents autosize maxsize closebox overflow 270 270 ll = new OpenLayers.LonLat(-5,15); 271 271 popupClass = AutoSizeAnchoredMaxSize; … … 274 274 275 275 276 //anchored popup bigger contents autosize overflow276 //anchored popup bigger contents autosize overflow 277 277 ll = new OpenLayers.LonLat(5,15); 278 278 popupClass = AutoSizeAnchored; … … 280 280 addMarker(ll, popupClass, popupContentHTML, false, true); 281 281 282 //anchored popup bigger contents autosize closebox overflow282 //anchored popup bigger contents autosize closebox overflow 283 283 ll = new OpenLayers.LonLat(10,15); 284 284 popupClass = AutoSizeAnchored; … … 287 287 288 288 289 //anchored popup wide short text contents autosize overflow289 //anchored popup wide short text contents autosize overflow 290 290 ll = new OpenLayers.LonLat(20,15); 291 291 popupClass = AutoSizeAnchored; … … 293 293 addMarker(ll, popupClass, popupContentHTML, false, true); 294 294 295 //anchored popup wide short text contents autosize closebox overflow295 //anchored popup wide short text contents autosize closebox overflow 296 296 ll = new OpenLayers.LonLat(25,15); 297 297 popupClass = AutoSizeAnchored; … … 299 299 addMarker(ll, popupClass, popupContentHTML, true, true); 300 300 301 //anchored popup wide short fixed contents autosize overflow301 //anchored popup wide short fixed contents autosize overflow 302 302 ll = new OpenLayers.LonLat(35,15); 303 303 popupClass = AutoSizeAnchored; … … 305 305 addMarker(ll, popupClass, popupContentHTML, false, true); 306 306 307 //anchored popup wide short fixed contents autosize closebox overflow307 //anchored popup wide short fixed contents autosize closebox overflow 308 308 ll = new OpenLayers.LonLat(40,15); 309 309 popupClass = AutoSizeAnchored; … … 312 312 313 313 314 //anchored popup thin long fixed contents autosize overflow314 //anchored popup thin long fixed contents autosize overflow 315 315 ll = new OpenLayers.LonLat(50,15); 316 316 popupClass = AutoSizeAnchored; … … 318 318 addMarker(ll, popupClass, popupContentHTML, false, true); 319 319 320 //anchored popup thin long fixed contents autosize closebox overflow320 //anchored popup thin long fixed contents autosize closebox overflow 321 321 ll = new OpenLayers.LonLat(55,15); 322 322 popupClass = AutoSizeAnchored; … … 325 325 326 326 327 //anchored popup wide long fixed contents autosize overflow327 //anchored popup wide long fixed contents autosize overflow 328 328 ll = new OpenLayers.LonLat(65,15); 329 329 popupClass = AutoSizeAnchored; … … 331 331 addMarker(ll, popupClass, popupContentHTML, false, true); 332 332 333 //anchored popup wide long fixed contents autosize closebox overflow333 //anchored popup wide long fixed contents autosize closebox overflow 334 334 ll = new OpenLayers.LonLat(70,15); 335 335 popupClass = AutoSizeAnchored; … … 339 339 340 340 // 341 //Bubble NO OVERFLOW342 // 343 344 //anchored bubble popup small contents no autosize341 //Bubble NO OVERFLOW 342 // 343 344 //anchored bubble popup small contents no autosize 345 345 var ll = new OpenLayers.LonLat(-55,5); 346 346 popupClass = OpenLayers.Popup.AnchoredBubble; … … 348 348 addMarker(ll, popupClass, popupContentHTML, false); 349 349 350 //anchored bubble popup small contents no autosize closebox350 //anchored bubble popup small contents no autosize closebox 351 351 var ll = new OpenLayers.LonLat(-50,5); 352 352 popupClass = OpenLayers.Popup.AnchoredBubble; … … 355 355 356 356 357 //anchored bubble popup small contents autosize357 //anchored bubble popup small contents autosize 358 358 ll = new OpenLayers.LonLat(-40,5); 359 359 popupClass = AutoSizeAnchoredBubble; … … 361 361 addMarker(ll, popupClass, popupContentHTML, false); 362 362 363 //anchored bubble popup small contents autosize closebox363 //anchored bubble popup small contents autosize closebox 364 364 ll = new OpenLayers.LonLat(-35,5); 365 365 popupClass = AutoSizeAnchoredBubble; … … 368 368 369 369 370 //anchored bubble popup small contents autosize minsize370 //anchored bubble popup small contents autosize minsize 371 371 ll = new OpenLayers.LonLat(-25,5); 372 372 popupClass = AutoSizeAnchoredBubbleMinSize; … … 374 374 addMarker(ll, popupClass, popupContentHTML, false); 375 375 376 //anchored bubble popup small contents autosize minsize closebox376 //anchored bubble popup small contents autosize minsize closebox 377 377 ll = new OpenLayers.LonLat(-20,5); 378 378 popupClass = AutoSizeAnchoredBubbleMinSize; … … 381 381 382 382 383 //anchored bubble popup small contents autosize maxsize383 //anchored bubble popup small contents autosize maxsize 384 384 ll = new OpenLayers.LonLat(-10,5); 385 385 popupClass = AutoSizeAnchoredBubbleMaxSize; … … 387 387 addMarker(ll, popupClass, popupContentHTML, false); 388 388 389 //anchored bubble popup small contents autosize maxsize closebox389 //anchored bubble popup small contents autosize maxsize closebox 390 390 ll = new OpenLayers.LonLat(-5,5); 391 391 popupClass = AutoSizeAnchoredBubbleMaxSize; … … 394 394 395 395 396 //anchored bubble popup bigger contents autosize closebox396 //anchored bubble popup bigger contents autosize closebox 397 397 ll = new OpenLayers.LonLat(5,5); 398 398 popupClass = AutoSizeAnchoredBubble; … … 400 400 addMarker(ll, popupClass, popupContentHTML, false); 401 401 402 //anchored bubble popup bigger contents autosize closebox402 //anchored bubble popup bigger contents autosize closebox 403 403 ll = new OpenLayers.LonLat(10,5); 404 404 popupClass = AutoSizeAnchoredBubble; … … 407 407 408 408 409 //anchored bubble popup wide short text contents autosize409 //anchored bubble popup wide short text contents autosize 410 410 ll = new OpenLayers.LonLat(20,5); 411 411 popupClass = AutoSizeAnchoredBubble; … … 413 413 addMarker(ll, popupClass, popupContentHTML); 414 414 415 //anchored bubble popup wide short text contents autosize closebox415 //anchored bubble popup wide short text contents autosize closebox 416 416 ll = new OpenLayers.LonLat(25,5); 417 417 popupClass = AutoSizeAnchoredBubble; … … 420 420 421 421 422 //anchored bubble popup wide short fixed contents autosize422 //anchored bubble popup wide short fixed contents autosize 423 423 ll = new OpenLayers.LonLat(35,5); 424 424 popupClass = AutoSizeAnchoredBubble; … … 426 426 addMarker(ll, popupClass, popupContentHTML); 427 427 428 //anchored bubble popup wide short fixed contents autosize closebox428 //anchored bubble popup wide short fixed contents autosize closebox 429 429 ll = new OpenLayers.LonLat(40,5); 430 430 popupClass = AutoSizeAnchoredBubble; … … 433 433 434 434 435 //anchored bubble popup thin long fixed contents autosize435 //anchored bubble popup thin long fixed contents autosize 436 436 ll = new OpenLayers.LonLat(50,5); 437 437 popupClass = AutoSizeAnchoredBubble; … … 439 439 addMarker(ll, popupClass, popupContentHTML); 440 440 441 //anchored bubble popup thin long fixed contents autosize closebox441 //anchored bubble popup thin long fixed contents autosize closebox 442 442 ll = new OpenLayers.LonLat(55,5); 443 443 popupClass = AutoSizeAnchoredBubble; … … 446 446 447 447 448 //anchored bubble popup wide long fixed contents autosize448 //anchored bubble popup wide long fixed contents autosize 449 449 ll = new OpenLayers.LonLat(65,5); 450 450 popupClass = AutoSizeAnchoredBubble; … … 452 452 addMarker(ll, popupClass, popupContentHTML); 453 453 454 //anchored bubble popup wide long fixed contents autosize closebox454 //anchored bubble popup wide long fixed contents autosize closebox 455 455 ll = new OpenLayers.LonLat(70,5); 456 456 popupClass = AutoSizeAnchoredBubble; … … 459 459 460 460 // 461 //Bubble OVERFLOW462 // 463 464 //anchored bubble popup small contents no autosize461 //Bubble OVERFLOW 462 // 463 464 //anchored bubble popup small contents no autosize 465 465 var ll = new OpenLayers.LonLat(-55,0); 466 466 popupClass = OpenLayers.Popup.AnchoredBubble; … … 468 468 addMarker(ll, popupClass, popupContentHTML, false, true); 469 469 470 //anchored bubble popup small contents no autosize closebox470 //anchored bubble popup small contents no autosize closebox 471 471 var ll = new OpenLayers.LonLat(-50,0); 472 472 popupClass = OpenLayers.Popup.AnchoredBubble; … … 475 475 476 476 477 //anchored bubble popup small contents autosize477 //anchored bubble popup small contents autosize 478 478 ll = new OpenLayers.LonLat(-40,0); 479 479 popupClass = AutoSizeAnchoredBubble; … … 481 481 addMarker(ll, popupClass, popupContentHTML, false, true); 482 482 483 //anchored bubble popup small contents autosize closebox483 //anchored bubble popup small contents autosize closebox 484 484 ll = new OpenLayers.LonLat(-35,0); 485 485 popupClass = AutoSizeAnchoredBubble; … … 488 488 489 489 490 //anchored bubble popup small contents autosize minsize490 //anchored bubble popup small contents autosize minsize 491 491 ll = new OpenLayers.LonLat(-25,0); 492 492 popupClass = AutoSizeAnchoredBubbleMinSize; … … 494 494 addMarker(ll, popupClass, popupContentHTML, false, true); 495 495 496 //anchored bubble popup small contents autosize minsize closebox496 //anchored bubble popup small contents autosize minsize closebox 497 497 ll = new OpenLayers.LonLat(-20,0); 498 498 popupClass = AutoSizeAnchoredBubbleMinSize; … … 501 501 502 502 503 //anchored bubble popup small contents autosize maxsize503 //anchored bubble popup small contents autosize maxsize 504 504 ll = new OpenLayers.LonLat(-10,0); 505 505 popupClass = AutoSizeAnchoredBubbleMaxSize; … … 507 507 addMarker(ll, popupClass, popupContentHTML, false, true); 508 508 509 //anchored bubble popup small contents autosize maxsize closebox509 //anchored bubble popup small contents autosize maxsize closebox 510 510 ll = new OpenLayers.LonLat(-5,0); 511 511 popupClass = AutoSizeAnchoredBubbleMaxSize; … … 514 514 515 515 516 //anchored bubble popup bigger contents autosize closebox516 //anchored bubble popup bigger contents autosize closebox 517 517 ll = new OpenLayers.LonLat(5,0); 518 518 popupClass = AutoSizeAnchoredBubble; … … 520 520 addMarker(ll, popupClass, popupContentHTML, false, true); 521 521 522 //anchored bubble popup bigger contents autosize closebox522 //anchored bubble popup bigger contents autosize closebox 523 523 ll = new OpenLayers.LonLat(10,0); 524 524 popupClass = AutoSizeAnchoredBubble; … … 527 527 528 528 529 //anchored bubble popup wide short contents autosize overflow529 //anchored bubble popup wide short contents autosize overflow 530 530 ll = new OpenLayers.LonLat(20,0); 531 531 popupClass = AutoSizeAnchoredBubble; … … 533 533 addMarker(ll, popupClass, popupContentHTML, false, true); 534 534 535 //anchored bubble popup wide short contents autosize closebox overflow535 //anchored bubble popup wide short contents autosize closebox overflow 536 536 ll = new OpenLayers.LonLat(25,0); 537 537 popupClass = AutoSizeAnchoredBubble; … … 540 540 541 541 542 //anchored bubble popup wide short fixed contents autosize overflow542 //anchored bubble popup wide short fixed contents autosize overflow 543 543 ll = new OpenLayers.LonLat(35,0); 544 544 popupClass = AutoSizeAnchoredBubble; … … 546 546 addMarker(ll, popupClass, popupContentHTML, false, true); 547 547 548 //anchored bubble popup wide short fixed contents autosize closebox overflow548 //anchored bubble popup wide short fixed contents autosize closebox overflow 549 549 ll = new OpenLayers.LonLat(40,0); 550 550 popupClass = AutoSizeAnchoredBubble; … … 553 553 554 554 555 //anchored bubble popup thin long fixed contents autosize overflow555 //anchored bubble popup thin long fixed contents autosize overflow 556 556 ll = new OpenLayers.LonLat(50,0); 557 557 popupClass = AutoSizeAnchoredBubble; … … 559 559 addMarker(ll, popupClass, popupContentHTML, false, true); 560 560 561 //anchored bubble popup thin long fixed contents autosize closebox overflow561 //anchored bubble popup thin long fixed contents autosize closebox overflow 562 562 ll = new OpenLayers.LonLat(55,0); 563 563 popupClass = AutoSizeAnchoredBubble; … … 566 566 567 567 568 //anchored bubble popup wide long fixed contents autosize overflow568 //anchored bubble popup wide long fixed contents autosize overflow 569 569 ll = new OpenLayers.LonLat(65,0); 570 570 popupClass = AutoSizeAnchoredBubble; … … 572 572 addMarker(ll, popupClass, popupContentHTML, false, true); 573 573 574 //anchored bubble popup wide long fixed contents autosize closebox overflow574 //anchored bubble popup wide long fixed contents autosize closebox overflow 575 575 ll = new OpenLayers.LonLat(70,0); 576 576 popupClass = AutoSizeAnchoredBubble; … … 581 581 582 582 // 583 //FRAMED NO OVERFLOW584 // 585 586 //anchored bubble popup small contents no autosize583 //FRAMED NO OVERFLOW 584 // 585 586 //anchored bubble popup small contents no autosize 587 587 var ll = new OpenLayers.LonLat(-55,-15); 588 588 popupClass = OpenLayers.Popup.FramedCloud; … … 590 590 addMarker(ll, popupClass, popupContentHTML, false); 591 591 592 //anchored bubble popup small contents no autosize closebox592 //anchored bubble popup small contents no autosize closebox 593 593 var ll = new OpenLayers.LonLat(-50,-15); 594 594 popupClass = OpenLayers.Popup.FramedCloud; … … 597 597 598 598 599 //anchored bubble popup small contents autosize599 //anchored bubble popup small contents autosize 600 600 ll = new OpenLayers.LonLat(-40,-15); 601 601 popupClass = AutoSizeFramedCloud; … … 603 603 addMarker(ll, popupClass, popupContentHTML, false); 604 604 605 //anchored bubble popup small contents autosize closebox605 //anchored bubble popup small contents autosize closebox 606 606 ll = new OpenLayers.LonLat(-35,-15); 607 607 popupClass = AutoSizeFramedCloud; … … 610 610 611 611 612 //anchored bubble popup small contents autosize minsize612 //anchored bubble popup small contents autosize minsize 613 613 ll = new OpenLayers.LonLat(-25,-15); 614 614 popupClass = AutoSizeFramedCloudMinSize; … … 616 616 addMarker(ll, popupClass, popupContentHTML, false); 617 617 618 //anchored bubble popup small contents autosize minsize closebox618 //anchored bubble popup small contents autosize minsize closebox 619 619 ll = new OpenLayers.LonLat(-20,-15); 620 620 popupClass = AutoSizeFramedCloudMinSize; … … 623 623 624 624 625 //anchored bubble popup small contents autosize maxsize625 //anchored bubble popup small contents autosize maxsize 626 626 ll = new OpenLayers.LonLat(-10,-15); 627 627 popupClass = AutoSizeFramedCloudMaxSize; … … 629 629 addMarker(ll, popupClass, popupContentHTML, false); 630 630 631 //anchored bubble popup small contents autosize maxsize closebox631 //anchored bubble popup small contents autosize maxsize closebox 632 632 ll = new OpenLayers.LonLat(-5,-15); 633 633 popupClass = AutoSizeFramedCloudMaxSize; … … 636 636 637 637 638 //anchored bubble popup bigger contents autosize closebox638 //anchored bubble popup bigger contents autosize closebox 639 639 ll = new OpenLayers.LonLat(5,-15); 640 640 popupClass = AutoSizeFramedCloud; … … 642 642 addMarker(ll, popupClass, popupContentHTML, false); 643 643 644 //anchored bubble popup bigger contents autosize closebox644 //anchored bubble popup bigger contents autosize closebox 645 645 ll = new OpenLayers.LonLat(10,-15); 646 646 popupClass = AutoSizeFramedCloud; … … 649 649 650 650 651 //anchored bubble popup wide short text contents autosize651 //anchored bubble popup wide short text contents autosize 652 652 ll = new OpenLayers.LonLat(20,-15); 653 653 popupClass = AutoSizeFramedCloud; … … 655 655 addMarker(ll, popupClass, popupContentHTML); 656 656 657 //anchored bubble popup wide short text contents autosize closebox657 //anchored bubble popup wide short text contents autosize closebox 658 658 ll = new OpenLayers.LonLat(25,-15); 659 659 popupClass = AutoSizeFramedCloud; … … 662 662 663 663 664 //anchored bubble popup wide short fixed contents autosize664 //anchored bubble popup wide short fixed contents autosize 665 665 ll = new OpenLayers.LonLat(35,-15); 666 666 popupClass = AutoSizeFramedCloud; … … 668 668 addMarker(ll, popupClass, popupContentHTML); 669 669 670 //anchored bubble popup wide short fixed contents autosize closebox670 //anchored bubble popup wide short fixed contents autosize closebox 671 671 ll = new OpenLayers.LonLat(40,-15); 672 672 popupClass = AutoSizeFramedCloud; … … 675 675 676 676 677 //anchored bubble popup thin long fixed contents autosize677 //anchored bubble popup thin long fixed contents autosize 678 678 ll = new OpenLayers.LonLat(50,-15); 679 679 popupClass = AutoSizeFramedCloud; … … 681 681 addMarker(ll, popupClass, popupContentHTML); 682 682 683 //anchored bubble popup thin long fixed contents autosize closebox683 //anchored bubble popup thin long fixed contents autosize closebox 684 684 ll = new OpenLayers.LonLat(55,-15); 685 685 popupClass = AutoSizeFramedCloud; … … 688 688 689 689 690 //anchored bubble popup wide long fixed contents autosize690 //anchored bubble popup wide long fixed contents autosize 691 691 ll = new OpenLayers.LonLat(65,-15); 692 692 popupClass = AutoSizeFramedCloud; … … 694 694 addMarker(ll, popupClass, popupContentHTML); 695 695 696 //anchored bubble popup wide long fixed contents autosize closebox696 //anchored bubble popup wide long fixed contents autosize closebox 697 697 ll = new OpenLayers.LonLat(70,-15); 698 698 popupClass = AutoSizeFramedCloud; … … 701 701 702 702 // 703 //FRAMED OVERFLOW704 // 705 706 //anchored bubble popup small contents no autosize703 //FRAMED OVERFLOW 704 // 705 706 //anchored bubble popup small contents no autosize 707 707 var ll = new OpenLayers.LonLat(-55,-20); 708 708 popupClass = OpenLayers.Popup.FramedCloud; … … 710 710 addMarker(ll, popupClass, popupContentHTML, false, true); 711 711 712 //anchored bubble popup small contents no autosize closebox712 //anchored bubble popup small contents no autosize closebox 713 713 var ll = new OpenLayers.LonLat(-50,-20); 714 714 popupClass = OpenLayers.Popup.FramedCloud; … … 717 717 718 718 719 //anchored bubble popup small contents autosize719 //anchored bubble popup small contents autosize 720 720 ll = new OpenLayers.LonLat(-40,-20); 721 721 popupClass = AutoSizeFramedCloud; … … 723 723 addMarker(ll, popupClass, popupContentHTML, false, true); 724 724 725 //anchored bubble popup small contents autosize closebox725 //anchored bubble popup small contents autosize closebox 726 726 ll = new OpenLayers.LonLat(-35,-20); 727 727 popupClass = AutoSizeFramedCloud; … … 730 730 731 731 732 //anchored bubble popup small contents autosize minsize732 //anchored bubble popup small contents autosize minsize 733 733 ll = new OpenLayers.LonLat(-25,-20); 734 734 popupClass = AutoSizeFramedCloudMinSize; … … 736 736 addMarker(ll, popupClass, popupContentHTML, false, true); 737 737 738 //anchored bubble popup small contents autosize minsize closebox738 //anchored bubble popup small contents autosize minsize closebox 739 739 ll = new OpenLayers.LonLat(-20,-20); 740 740 popupClass = AutoSizeFramedCloudMinSize; … … 743 743 744 744 745 //anchored bubble popup small contents autosize maxsize745 //anchored bubble popup small contents autosize maxsize 746 746 ll = new OpenLayers.LonLat(-10,-20); 747 747 popupClass = AutoSizeFramedCloudMaxSize; … … 749 749 addMarker(ll, popupClass, popupContentHTML, false, true); 750 750 751 //anchored bubble popup small contents autosize maxsize closebox751 //anchored bubble popup small contents autosize maxsize closebox 752 752 ll = new OpenLayers.LonLat(-5,-20); 753 753 popupClass = AutoSizeFramedCloudMaxSize; … … 756 756 757 757 758 &
