-
Notifications
You must be signed in to change notification settings - Fork 335
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixed smoothScaleTo bug courtesy @corsc; fixed onLayout fast-fail that was preventing dynamic markers from qualifying for MarkerTapEvents courtesy @skaor; updated formatting and convention to match existing pattern
- Loading branch information
Showing
7 changed files
with
116 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -203,6 +203,23 @@ public void setDownsampleDecoder( BitmapDecoder decoder ) { | |
sampleManager.setDecoder( decoder ); | ||
} | ||
|
||
/** | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
moagrius
Author
Owner
|
||
* Get the {@link TileSetSelector} implementation currently used to select tile sets. | ||
* @return TileSetSelector implementation currently in use. | ||
*/ | ||
public TileSetSelector getTileSetSelector() { | ||
return detailManager.getTileSetSelector(); | ||
} | ||
|
||
/** | ||
* Set the tile selection method, defaults to {@link TileSetSelectorMinimalUpScale} | ||
* Implement the {@link TileSetSelector} interface to customize how tile sets are selected. | ||
* @param selector (TileSetSelector) implementation that handles tile set selection as scale is changed. | ||
*/ | ||
public void setTileSetSelector(TileSetSelector selector) { | ||
detailManager.setTileSetSelector(selector); | ||
} | ||
|
||
/** | ||
* Defines whether tile bitmaps should be rendered using an AlphaAnimation | ||
* @param enabled (boolean) true if the TileView should render tiles with fade transitions | ||
|
@@ -1149,16 +1166,4 @@ public void onRenderComplete() { | |
|
||
} | ||
|
||
public TileSetSelector getTileSetSelector() { | ||
return this.detailManager.getTileSetSelector(); | ||
} | ||
|
||
/** | ||
* Set the tile selection method, defaults to {@link TileSetSelectorMinimalUpScale} | ||
* | ||
* @param selector | ||
*/ | ||
public void setTileSetSelector(TileSetSelector selector) { | ||
this.detailManager.setTileSetSelector(selector); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sorry it looks like my formatting was wrong. I use a different style so I think I set my eclipse formatter to the wrong settings for your style. Do you use eclipse? if so, do you think you could export and send me your settings? save us some trouble for next time?