GeocodableBehavior
GeocodableBehavior copied to clipboard
Propel behavior that helps you build geo-aware applications.
As discussed on commit 4da648587a74b8e484c2a4880ab1b24a2b072bdd
The default configuration of size=10, scale=8 only allows value between -99.99999999 to +99.99999999, but the possible range of longitude is -180 to 180, which make inputting places in the Far...
When a table with concrete_inheritance inherits from a table with geocodable, the resulting class cannot be used: ``` ``` The getDistanceTo() method generated as a result of inheriting from the...
See https://github.com/propelorm/Propel2/pull/511 Thank you much :)
The current `filterByDistanceFrom` can't use an index to speed up the query. Because of the trigonometry functions, every lat-lon pair has to be evaluated to find a possible match. I...