aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/maps/CachesOverlay.java
Commit message (Collapse)AuthorAgeFilesLines
* Minor cleanupsSamuel Tardieu2014-05-141-1/+1
|
* fix #3504: NPE in map touchBananeweizen2014-01-031-13/+19
|
* Revert "experimental single overlay for maps"Samuel Tardieu2013-12-271-79/+38
| | | | | This reverts commit 74b7b59e0eac6ec09c032baa6e9d9d27f0ec2f95 which had been merged by mistake.
* experimental single overlay for mapsBananeweizen2013-12-271-38/+79
|
* refactoring: cgData -> DataStoreSamuel Tardieu2013-09-131-2/+2
|
* fix #1945: Show Circles only for shown cachesBananeweizen2013-09-011-10/+13
|
* refactoring: findbugs cleanupBananeweizen2013-08-261-2/+3
| | | * don't catch raw exceptions
* Implements #750, use preference activitykoem2013-07-091-1/+1
|
* Correct log messages to account for refactoringcampbeb2013-06-051-3/+3
|
* #2725: Feature-Request: Circles on the map only around physical stagesBananeweizen2013-06-011-8/+6
|
* fix #2725: Circles on the map only around physical stagesBananeweizen2013-05-251-12/+11
|
* Refactoring: rename cgCache into GeocacheSamuel Tardieu2013-02-031-4/+4
|
* 0 is a valid waypoint idSamuel Tardieu2013-01-261-1/+1
|
* refactoring: use exception object in logggingBananeweizen2013-01-121-3/+3
|
* Refactoring: narrow scope of variablesSamuel Tardieu2012-12-181-2/+1
|
* fix #2211: remove application-database indirectionBananeweizen2012-12-011-2/+2
|
* Always mark cache dirty when opening from map so that it reloads if changed ↵campbeb2012-05-281-1/+1
| | | | | while open Fixes #1618
* Donwload live-map details only once, fixes #1619rsudev2012-05-271-1/+1
|
* Do not use "else" with "return"Samuel Tardieu2012-05-211-1/+3
|
* Request more details for popup. Fixes #1357blafoo2012-05-181-4/+8
|
* Popup on live map before requesting more details. Fixes #1256blafoo2012-05-171-14/+41
|
* refactoring: minor cleanupsBananeweizen2012-05-151-1/+1
| | | | | * use ellipsis * avoid String concatenation
* Fixes issue #1519, multiple pop-upsrsudev2012-05-091-2/+2
|
* Refactoring Popups. Added SuperclassPortree-Kid2012-05-041-2/+2
|
* Open new Popup for Waypoints from MapPortree-Kid2012-05-041-2/+5
|
* Remove useless fields, and introduce local variables as neededSamuel Tardieu2012-05-011-2/+1
|
* Compatibility for mapsforge 0.2.4 offline mapsrsudev2012-04-301-3/+6
|
* Refactoring: remove redundant local variablesSamuel Tardieu2012-04-221-2/+1
|
* refactorings: preparations to make #1303 easierBananeweizen2012-04-121-11/+2
|
* refactoring: remove the logging tag from settingsBananeweizen2012-04-121-3/+3
|
* fix #1394: Red Circles around Event CachesBananeweizen2012-04-121-49/+73
|
* Refactoring: use IWaypoint and cgCache instead of cgCoord objectSamuel Tardieu2012-04-011-3/+3
| | | | | | | | | | | | | | Most of the time, the cgCoord is built from an existing cache or from an existing waypoint. And most of the time, using the IWaypoint interface is fine. We can see a cache as being a waypoint as well, so by making it implement IWaypoint we can manipulate IWaypoint objects every time we were manipulating cgCoord ones without copying. After this refactoring, cgCoord was only used to hold some partial cache information. cgCache can be used instead, and cgCoord is not needed anymore.
* Proxy all logs through cgeo.geocaching.utils.LogSamuel Tardieu2012-03-311-1/+1
| | | | | | | | The behaviour is unchanged, but altering Settings.isDebug() to return false will prevent verbose, debug and info levels messages from being logged. Part of work on #1301.
* Refresh waypoints on map after being editedcampbeb2012-03-031-0/+1
|
* Displaying changed caches in the Live Map. Improves #1184blafoo2012-02-291-0/+1
|
* Fixes #1163, refactor geocode usage in cgeowaypointrsudev2012-02-261-1/+0
| | | - removed parameter and member, always taken from contained waypoint
* #945: unify navigation methodsBananeweizen2012-02-181-4/+1
| | | | * removed search result parameter from navigation invocation * removed "fromDetail" differentiation in popup
* fix #757: circles and colorsBananeweizen2011-12-311-1/+1
|
* refactoring: reduce boxing/unboxing crazinessBananeweizen2011-12-031-1/+1
|
* Merge remote branch 'blafoo/cachetype'Bananeweizen2011-11-231-2/+2
|\ | | | | | | | | | | | | | | Conflicts: main/src/cgeo/geocaching/cgBase.java main/src/cgeo/geocaching/cgeocaches.java main/src/cgeo/geocaching/filter/cgFilterByType.java main/src/cgeo/geocaching/maps/CachesOverlay.java
| * Use of CacheType instead of Stringblafoo2011-11-181-9/+5
| |
* | cleanup: remove unused code (which is now in cgeopopup)Bananeweizen2011-11-191-89/+0
|/
* Implementing #179, refactor maps to single source, last partrsudev2011-11-151-5/+5
|
* more unit testsbananeweizen2011-11-111-1/+1
| | | | | | | * tests for enumerations * initial OKAPI client and connector factory test * refactored enum lookups to disallow null values * refactored resource based tests to have one class for reading test resources
* Prevent boolean boxing/unboxingSamuel Tardieu2011-11-091-2/+2
|
* Do not use deprecated methodsSamuel Tardieu2011-11-081-4/+4
|
* No direct access to fieldsblafoo2011-10-261-20/+19
|
* fix #703: exception in show on mapBananeweizen2011-10-231-21/+7
| | | | | * includes fixes for some other exceptions * refactored navigation activity invocation * icon is still not correct (generic instead of correct type)
* fix #702: circles around caches always shown as mysteryBananeweizen2011-10-231-14/+16
| | | * includes some code cleanup
* support cache type "unknown", fixes #518Bananeweizen2011-10-161-2/+3
| | | | * refactored many places to reference the cache type enum * special icon for "unknown" still missing