|
| 1 | +(******************************************************************************) |
| 2 | +(* umapviewe.pas ??.??.???? *) |
| 3 | +(* *) |
| 4 | +(* Version : 0.01 *) |
| 5 | +(* *) |
| 6 | +(* Author : Uwe Schächterle (Corpsman) *) |
| 7 | +(* *) |
| 8 | +(* Support : www.Corpsman.de *) |
| 9 | +(* *) |
| 10 | +(* Description : make Google maps accessable for FPC / OpenGL *) |
| 11 | +(* *) |
| 12 | +(* License : See the file license.md, located under: *) |
| 13 | +(* https://github.com/PascalCorpsman/Software_Licenses/blob/main/license.md *) |
| 14 | +(* for details about the license. *) |
| 15 | +(* *) |
| 16 | +(* It is not allowed to change or remove this text from any *) |
| 17 | +(* source file of the project. *) |
| 18 | +(* *) |
| 19 | +(* Warranty : There is no warranty, neither in correctness of the *) |
| 20 | +(* implementation, nor anything other that could happen *) |
| 21 | +(* or go wrong, use at your own risk. *) |
| 22 | +(* *) |
| 23 | +(* Known Issues: none *) |
| 24 | +(* *) |
| 25 | +(* Inspired by: https://github.com/maciejkaczkowski/mapviewer (GPLv2) *) |
| 26 | +(* *) |
| 27 | +(* Modifications against the Original one: *) |
| 28 | +(* - Merge into one file *) |
| 29 | +(* - removed threads *) |
| 30 | +(* - Render in OpenGL (instead of LCL-Component) *) |
| 31 | +(* - Only Google Maps supported *) |
| 32 | +(* - Added Images shown on locations *) |
| 33 | +(* - only using synapse as downloadmanager *) |
| 34 | +(* - enable proxy downloading *) |
| 35 | +(* - removed as much variables as possible *) |
| 36 | +(* *) |
| 37 | +(* Missing Features: *) |
| 38 | +(* - Cleanup, Doku *) |
| 39 | +(* - Download via Thread for smoother rendering ? *) |
| 40 | +(* *) |
| 41 | +(* History : 0.01 - Initial version *) |
| 42 | +(* *) |
| 43 | +(******************************************************************************) |
| 44 | + |
1 | 45 | Unit umapviewer;
|
2 | 46 |
|
3 | 47 | {$MODE objfpc}{$H+}
|
4 | 48 |
|
5 |
| -(* |
6 |
| - * Inspired by: https://github.com/maciejkaczkowski/mapviewer (GPLv2) |
7 |
| - * |
8 |
| - * Modifications against the Original one: |
9 |
| - * - Merge into one file |
10 |
| - * - removed threads |
11 |
| - * - Render in OpenGL (instead of LCL-Component) |
12 |
| - * - Only Google Maps supported |
13 |
| - * - Added Images shown on locations |
14 |
| - * - only using synapse as downloadmanager |
15 |
| - * - enable proxy downloading |
16 |
| - * - removed as much variables as possible |
17 |
| - * |
18 |
| - * History: 0.01 = initialversion |
19 |
| - * |
20 |
| - * Bugs / Missing Features: |
21 |
| - * - Cleanup, Doku |
22 |
| - * - Download via Thread for smoother rendering ? |
23 |
| - *) |
24 |
| - |
25 | 49 | Interface
|
26 | 50 |
|
27 | 51 | Uses
|
|
0 commit comments