Simple Location

Description

Supports adding geo coordinates, a location taxonomy, and a textual location description to a post, comment, user, or attachment. Supports adding weather data to a post or to a widget based on location.
Offers choice of map displays. It supports retrieving location using the HTML5 geolocation API by default. Clicking the location icon or ‘Lookup Location’ will retrieve the location.

As it stores the GeoData in the classic WordPress format, Geodata can also be added from other plugins.

Automatically saves location data from image metadata when uploaded as well.

Offers the opportunity to change the displayed timezone on a per-post basis for those posts from far off locations and set this based on the coordinates of the location.
While Gutenberg compatible, this is not built for Gutenberg.

Privacy and Data Notice

Simple Location stores location and weather data inside posts, attachments, comments, and term meta…optionally other post types. This data respects a public, private or
protected setting. Attachment data is automatically extracted from images if location is present, which could be extracted by any third-party downloading the picture
unless removed. For all other data, it is provided by the user, who decides its ultimate use. Location data is made available through a geolocation provider…the default is currently
HTML5 browser geolocation, for which the user must give consent to share). Other information is secured through use of third-party APIs to identify a
location, calculate elevation, display maps, and weather conditions.

Locations and Venues

Locations uses WordPress taxonomies to allow you to generate an archive page of all posts from that location and giving it a permalink on your site. Locations are meant to reflect a more general
location…for example, “Here are posts I made in California.”

Locations are divided by administrative areas. The hierarchy for locations is:
* Country
* Region – state, county, or province level.
* Locality – city, town, or village level

You can choose to display the location over the textual address field. There is an option in settings to change this behavior.

The reverse geocoding system attempts to consistently retrieve the country code, region code, and locality for the location and add them to the location taxonomy. This can be potentially problematic, as if the returns
from the locations added aren’t consistent, it will duplicate and explode the list of terms. This is the same issue that has held back venues.

Locations are matched using the country code, region code, and locality field, and therefore, you can edit the displayed name or the region code without issue. Due to matching issues, you may have to make some manual changes and there may be some occasional duplication.

There is no top level Location page, /location included in the plugin. You can create a page at this location and use a custom template to allow it to show a list of your locations.

Venues are meant to reflect a specific location, such as a business or point of interest. Venues were originally set up as a taxonomy, and were in the plugin unimplemented for several versions. However,
due to various changes since that was set up, they were switched to a custom post type. Under this setup, each venue is represented by a URL on the site that posts can be linked to. The URL contains
information about the venue.

Zones

Zones allow for geofencing. You can set coordinates and a radius around them. If you set location to a place within a zone, the default behavior is to replace the location
with a preset Name and hide the coordinates. This allows you to protect private locations such as your home, or your place of business. For Micropub, it will set the location
as protected if the location is in the zone and the location-visibility property is not set. For the post editor in WordPress, looking up the location of an item inside the
zone will result in the visibility being set to protected and the name being set to the zone name. This can be overridden.

Zones are replaced as of 5.0.0 with Private Venues

Weather

Weather consists of at minimum the current conditions and temperature but includes future parameters for use such as pressure, wind speed, wind direction degree, etc. Weather widgets are available
that can be set to a specific location, a user, station ID, or airport code. Station ID is available from supported providers for weather stations, for example from a Personal Weather Station(PWS).

Stations

Stations allow for using a custom data source for weather data. This source should be a URL that returns a JSON object. When using the Custom Station provider for weather, it
will look for when one of the stations defined is within 10km of your current location. It will then use the return as the current weather conditions. Please note that the
return must be in the format documented in the code.

WordPress GeoData

WordPress Geodata is an existing standardized way to store geodata about a post, user, comment, or term.

It consists of four fields: latitude, longitude, public, and address. This matches up with the HTML5 Geolocation fields. The W3C Geolocation Specification
also provides for properties of altitude, accuracy, altitudeAccuracy, speed, and heading, which may be stored. Map Zoom is also stored as a geodata property.

Timezone is also stored as a property and is derived from the location by default or set manually.

In order to access private location information, the following custom capabilities are added to WordPress:
* ‘read_{$object_type}location’ – Whether or not a user is allowed to read information locations for object types: posts, comments, terms, users. A user is always allowed to read the location from their objects.
* ‘edit
{$object_type}_location’ – Whether or not a user is allowed to edit information locations for object types: posts, comments, terms, users. A user is always allowed to read the location from their objects.

Providers

The plugin is designed to be extensible and anyone could write a plugin that would add additional providers.

  • Map Providers are services that offer an API to retrieve maps, which are displayed on posts with a location. Providers include MapBox, Google, Mapquest, HERE, LocationIQ, Geoapify, TomTom, and Bing.
  • Geocoding Providers take geo coordinates and look up the actual location/address for textual display. Geocoding Providers include Nominatim, HERE, the Mapquest hosted version of Nominatim, Google, Bing, LocationIQ, OpenRoute and Geonames. They also support looking up coordinate for physical addresses
  • Venue providers, similar to Geocoding providers, search for locations from coordinates, however, instead of returning street addresses, or municipality, it returns a list of places or venues.
  • Elevation Providers optionally derive the elevation from an API when not available. Elevation is used to estimate altitude and adjust estimated sunrise/sunset levels accordingly.
  • Location Providers attempt to determine your location to add it to a post. Providers include HTML5 Browser Geolocation, a Provider that takes the location setting out of the author profile, a provider that returns the exact
    location of a three letter airport code, and Compass, a self-hosted option for storing your location.
  • Weather Providers retrieve weather data about your location and include OpenWeatherMap, Pirate Weather, Dark Sky, Weatherstack, WeatherBit, HERE and the US National Weather Service. HERE, Pirate Weather, Dark Sky, WeatherBit, and Weatherstack do not support stations. There is also an option for custom station URLs that must return the properties as they are stored in WordPress.
    ** The National Weather Service(US) uses their station lookup API to find the closest weather station, and uses weather from there. Therefore, if this returns no options, if you are outside the US, it will return no weather.
    ** The Met Office(UK) uses the distance from your current location to the nearest UK weather station and finds the closest one. However, if the nearest station is more than 100km away, it will return nothing.
    ** For Weather services like the NWS, Met Office, and the Custom Provider, where coverage is not worldwide, if nothing is found, a fallback provider can be set and used.

FAQ

What are the requirements to use this plugin?

API Keys are required to use certain services.
* Google
* Mapbox – To retrieve style list inside the UI, you need a token with the styles:list scope
* Bing
* OpenWeatherMap
* MapQuest
* HERE
* Compass
* Weatherstack
* Weatherbit
* GeoNames – requires a username
* LocationIQ
* Met Office UK
* OpenRoute Service
* GeoApify
* Visual Crossing
* Meteostat
* Pirate Weather
* TomTom
* AerisWeather – Individuals who share their personal weather station data with PWSWeather.com are offered a free contributor account.

At this time, all map services require an API key, but most permit limited non-commercial use.
Nominatim does not require an API key, but it does ask for an email address, which will be the admin email of the site
If not provided there will be no map displayed regardless of setting, reverse geo lookup will not work
Without a weather provider this service will not work.

API Keys may have free limits, or may incur fees if overused. This plugin only uses a request when you post, which is usually well within the free tier which is usually thousands of requests. In all cases, you must comply
with the provider’s terms of use.

The appropriate API keys should be entered in Settings->Simple Location or will move to Indieweb->Location if the Indieweb plugin if installed.

How do I add support for location to a custom post type?

add_post_type_support( ‘geo-location’);
add_post_type_support( ‘weather’ );

The software uses two custom features to declare that the post type supports these features, otherwise the location and weather features do not show in the editor.

Why are my maps served from the provider instead of saved as images to my site?

The terms of service of most map providers expressly forbid this. While the likelihood of one of these providers coming after an individual is slim, this would be a violation of WordPress plugin guidelines.
This is why the plugin does not save maps to the media library. The only self-serve option being offered at this time is to self-host a caching static map API endpoint.

What is the custom map provider?

The custom map provider is an endpoint you provide yourself. You can install and use the repository here, which is a fork of a project by Aaron Parecki.
The custom provider was designed around the parameters in this code. All the commercial static map APIs used assemble the pieces of a map from public tile servers, which
is what this code does. While the code allows for multiple tile sources, please ensure compliance with their licenses. At the least, most of them require attribution.

What is the custom weather provider?

This allows you to use a custom endpoint that returns current weather conditions in json, using the property names used by this plugin, which can be found outlined in the class-weather-provider.php file. The configuration for this
takes a URL and an ID. So you could run a script that generates a static page anywhere from any source with this data.

Which providers support historic weather data?

Currently, only Visual Crossing supports historic weather data on their basic plan. Meteostat consists solely of historical data and has no current data.

What is the fallback weather provider?

Several providers, including the custom provider, the National Weather Service(US), and the Met Office(UK) only provide limited locations for retrieving weather data. This specifies where to look if the first provider fails.
This may be replaced with better logic in future.

Is this compatible with the WordPress mobile apps?

Simple Location uses WordPress Geodata to store location, as does the WordPress app. So setting location with the app should allow it to be displayed by Simple Location. The only major difference
is that whether or not a location is public is set with either 0 for private or 1 for public. The spec implemented states a non-zero number is considered public. This plugin adds the option of 2,
also known as protected, which shows a textual description of the location but does not display a map or geographic coordinates.

However, now that the WordPress apps no longer support location, this may be moot.

The Location Icon does not retrieve my location.

Chrome Users: Retrieves the location using the HTML5 geolocation API(available in your browser) will not work on Chrome if your website is not secure(https). This is a Chrome decision to ensure safe control of personal data.

You can take advantage of the other built-in location providers, for example, one uses the location of the user or create your own location provider as a separate plugin.

How can I update the location of my user profile?

You can do so under your user profile or alternatively update using a REST API endpoint. By posting to /wp-json/sloc_geo/1.0/user with the latitude, longitude, altitude parameters, or with a geojson body, will
update the user associated with the credentials you provide to the REST API.

How can I access the location or weather data on the frontend?

There are REST API endpoints to retrieve the data so it can be used in the admin under the namespace /wp-json/sloc_geo/1.0:
* /timezone which will return timezone data for a latitude/longitude or airport code
* /weather which will return the weather for a latitude/longitude or station ID
* /geocode which will return the address information for a latitude/longitude and optionally add the weather
* /lookup which will return the current location for a user based on the location provider
* /airport allows search for an airport by IATA code, ICAO code, or Municipality. Used for the airport location search
* /map which will return static map data for the provided latitude and longitude

What is Compass?

Compass is a GPS tracking server that stores data in flat files. The instructions for installation are available in the GitHub repository. GPS
data can be sent to it from iOS or Android devices using various apps.

How can I show a list of posts tagged with a location?

You can filter any query or archive by adding ?geo={all|public|text} to it to show only public posts with location. Adding /geo/all to the homepage or archive pages should also work

How can I see a map of all the locations in an archive page?

If you add /map to any archive URL, for example, example.com/2019/map it will return a template with a map view of that archive. It uses a default template built into the theme.
Being as styling this would not be customized to your theme, you can add a map-archive.php file to your theme to customize this. For taxonomies, use /map/taxonomy/term.

JetPack offers Location Display, why do I need this?

JetPack only began offering location display in 2017, 3 years after this plugin was created. This plugin disables their implementation as it created conflicts.

They do not offer the features this plugin does and their goal is a minimal implementation.

Why am I seeing location on private posts with the notation Hidden?

This appears to users who can read private posts when logged in. It does not appear when not logged in. The same applies to the location taxonomy. If you are not logged in, or
are logged in and don’t have the read_private_posts permission, you won’t see posts with private locations.

How can I report issues or request support?

The Development Version as well as support can be found on Github.

How can I add support for ___ ?

Simple Location has the concept of Providers. Providers are an abstract class that you can implement to take information from one format into the one Simple Location understands.
The plugin offers providers for:
* Geolocation – Looking up an address from coordinates or vice versa
* Location – By default this uses your browser to lookup your location but you can alternatively tap into a service to get your current location, perhaps from your phone
* Weather – Retrieves weather based on location or station ID
* Map – Provides maps for display

What icons are used here?

Reviews

November 11, 2023
Not sure how long this has been happening but this plugin prevents comment editing from working. The green “Update” button does nothing. I am doing this on a custom post type (with PODS). Console tools shows this message being generated: An invalid form control with name='<u>venue_id</u>’ is not focusable. <input class=”widefat” type=”number” name=”<u>venue_id</u>” id=”<u>venue_id</u>” step=”1″ min=”1″ value=”0″> If you expand Location (click EDIT) then click edit it says ” Venue: must be greater than or equal to 1″
February 10, 2021
Doesn’t look like much but is doing a fair bit under the hood. It’s simple yet very effective and well thought out.
April 14, 2020
Great Plugin I utilize it a great deal. I would like to be able to use it on my pages too not just post though. I love the ease of use and the simplicity.
April 13, 2020
I really appreciated that the default was for private access and using Open providers. I downloaded and installed using the UK MetOffice provider. Thanks so much David
January 24, 2018
Thank you! Only took minutes to setup and do what it says and what i need. However i would like to change the way You can filter any query or archive by adding ?geo={all|public|text} to it to show only public posts with location. Adding /geo/all to the homepage or archive pages should also work. Instead a list of posts, a map with all the markers that link to the post would be so cool!
Read all 8 reviews

Contributors & Developers

“Simple Location” is open source software. The following people have contributed to this plugin.

Contributors

Translate “Simple Location” into your language.

Interested in development?

Browse the code, check out the SVN repository, or subscribe to the development log by RSS.

Changelog

5.0.23 ( 2024-02-02 )

  • Fix issues with media metadata saving
  • Save location taxonomy for images
  • Fix unset variables in HERE provider
  • Refresh data files(airports, geo subdivisions, etc)

5.0.22 ( 2023-12-25 )

  • Fix issue where dropdown filter was not working when value set to no filter.
  • Limit venues when you change location pulldown.

5.0.21 ( 2023-12-23 )

  • Fix fatal error when no venue
  • Read OpenMapQuest as a Geo Provider as no longer available
  • Add dates to map archive view
  • If missing location but post has a venue, set the location of the post to the venue’s location

5.0.20 ( 2023-12-17 )

  • Dropdown for Venue will now on new edit load only, limited to venues at that location
  • Temporarily disble sunset adjustment by elevation due to PHP8 deprecation of date_sunrise/sunset. Need to write wrapper in future
  • Dropdown filter for location taxonomy added
  • Improve some strings

5.0.19 ( 2023-12-12 )

  • Pulldown will set option by default
  • Fix micropub integration to add additional check

5.0.18 ( 2023-11-11 )

  • Update dependencies
  • Support Widgets in Legacy Widget Block
  • Fix Venue Being Set to 0
  • Switch venue to a pulldown. Would like to link it to location at some point, so it only shows venues in that region.

5.0.17 ( 2023-10-02 )

  • Refresh dependencies
  • Bump minimum PHP to 7.0

5.0.16 ( 2023-07-15 )

  • Fix issue with missing AQI icon

5.0.15 ( 2023-07-01 )

  • Fix conflict with WooCommerce Subscription plugin

5.0.14 ( 2023-06-03 )

  • Fix undeclared variable
  • Fix unclosed string

5.0.13 ( 2023-05-02 )

  • Fix issue with geoapify and bing map providers due calling old bounding box function
  • Change signature of display name function for taxonomy to allow for multiple arguments for display
  • Fix issue with google marker display
  • Check for ExifVersion before using it

5.0.12 ( 2023-04-30 )

  • Remove Dark Sky as API is turned off
  • Fix several issues where errors occurred because a non-numeric value was passed to a function that required a numeric one
  • Check for existence of array properties before using them

5.0.11 ( 2023-04-14 )

  • Add code to store webmention location in comments previously handled by Semantic Linkbacks
  • Fix issue with typing in PHP8.1 causing errors
  • Fix for no set map provider

5.0.10 (2023-03-13 )

  • Fix call to deprecated function

5.0.9 ( 2023-03-12 )

  • Fix issue with filter of location archives

5.0.8 ( 2023-03-08 )

  • Fix EXIF data issue
  • Introduce attachement date function to get created time and use it to show this in the attachment editor.

5.0.7 ( 2023-01-10 )

  • Minor bug fixes
  • Add function to return child venues.

5.0.6 ( 2023-01-02 )

  • Add functions for parent venues and to extract media from posts made at venue
  • Check error on return

5.0.5 ( 2022-12-27 )

  • Add count of posts attached to venues to list table
  • Allow importing an address from associated posts to a venue
  • Improve list table display

5.0.4 ( 2022-11-25 )

  • Add uid when updating the checkin property of a post
  • Add location to post slug for venues to assist in disambiguation
  • Add location to venue when displayed to assist in disambiguation

5.0.3 ( 2022-11-13 )

  • Add support to lookup location to update older posts with venue creation
  • Update map archive to call get_location over custom code. Add arguments to get_location to allow better customization for the map.
  • Set map zoom level to building level if Micropub post is a checkin
  • Allow for passing thorugh a zoom when creating a venue, otherwise building level default

5.0.2 ( 2022-11-12 )

  • Add function to get posts for a specific venue
  • Add function to retrieve venue type

5.0.1 ( 2022-11-06 )

  • Fix issue raising warning during block editor
  • Fix strict typing on zenith

5.0.0 ( 2022-11-05 )

  • Remove Yandex as a supported provider.
  • Add URL and documentation strings to all providers
  • Refactor reused code in providers into traits.
  • Separate Elevation into a separate provider category. The Elevation provider is called by the Geo Provider when needed.
  • Add additional error checks
  • Introduce GeoApify for Geolocation
  • Split off EXIF data enhancement into a separate file
  • Move several geo faunctions to global scope.
  • Add a series of global functions to get/set geo and weather data which are also pluggable to different storage locations
  • Separate weather and geo into two separate sets of functions
  • Set the weather condition to a code instead of storing icons and summary. Retain summary and icon for backcompat
  • Introduce Venue as a Custom Post Type
  • Replace Zones with Private Venues
  • Automatically create venues when checking in using Micrpub.
  • Make default for displaying location on posts the venue name and link, then location taxonomy, then address field.

4.5.0 ( 2022-06-17 )

  • Adjust queries
  • Update dependencies
  • Show timezone on the post edit page when does not match site timezone

4.4.15 ( 2022-01-26 )

  • Add airline brand icons
  • Add labels now customizable for location taxonomy
  • Update dependencies

4.4.14 ( 2021-11-12 )

  • Fix for posts without location causing error
  • Added rewrite for map and location taxonomy together. /maps/location/us for example
  • Added option for showing taxonomy in the location display over the address field.

4.4.13 ( 2021-11-02 )

  • Additional type fixing

4.4.12 ( 2021-10-30 )

  • Fix minor bug
  • Update airport data

4.4.11 ( 2021-09-28 )

  • Fix issue with protected functions causing errors
  • Remove duplicative data for country and region conversion
  • Add unit tests
  • Add flags to country pulldowns
  • Add flags to Archive Views

4.4.10 ( 2021-09-06 )

  • Set Default Time for Posts based on the User Timezone field.
  • Ensure Last Seen Does Not Update if Off by More than Ten Minutes
  • Update Rest Field return to show all returns, but only if the information is public, otherwise it is blank.
  • Add timezone to REST comment endpoint
  • Remove empty returns from location data in post, comment, and user endpoints
  • Add custom capabilities

4.4.9 ( 2021-08-21 )

  • Refresh of Map Providers based on latest API parameters
  • Introduction of Max Height, Width, and Zoom parameters to prevent going larger than provider supports
  • Introduction of TomTom maps
  • Adjustment of icon styling

4.4.8 ( 2021-07-23 )

  • Refresh of dependencies and compatibility check with WP5.8

4.4.7 ( 2021-05-14 )

  • Add Pirate Weather( https://pirateweather.net ) as a weather provider. I like to support independents.

4.4.6 ( 2021-04-05 )

  • Hide localities in parent list.
  • Set location taxonomy in Micropub.
  • Move location taxonomy into same box as rest of details.

4.4.5 ( 2021-02-27 )

  • forgot to commit necessary data files in 4.4.4

4.4.4 ( 2021-02-27 )

  • Fix issue where saving terms places other than the admin causes data loss. This also fixes data loss when using a taxonomy merge tool.
  • Switch from querying for the term meta to determining type of location by hierarchy.
  • Check permissions before allowing the edit of the term.
  • Add region select pulldown which will be shown unless the value of the region is not on the list.

4.4.3 ( 2021-02-13 )

  • Fix issue with saving Term Metadata
  • Add list location function to output a list of used locations. Currently wrapper around wp_list_categories
  • When you add a new term it automatically refreshes the entire list of locations so the new term will appear properly in the hierarchy.
  • Additional unit testing.

4.4.2 ( 2021-02-09 )

  • Reworking of the region search code using new data sources to try to get some consistency between providers.
  • Add option to the debugger to not add new term, to allow for testing.
  • Revamp of UI based on feedback to make it less fragile.

4.4.1 ( 2021-02-07 )

  • Location was only being shown in DEBUG mode
  • When a match for region code was not found the code was creating a region with a name but no code, which meant duplication. Going forward, it will use the full region name. It will also try additional matching to find the code.
  • When looking up the location on an existing post, it was setting everything to private. Going forward, only if not already set.
  • Display Name function now links each part of the location to the term page for it.
  • Switch rewrite for taxonomy maps to /map/taxonomy instead of taxonomy being at the end.
  • Update custom station provider to check timestamp and support future station historic weather.

4.4.0 ( 2021-02-07 )

  • Rename the Mapquest provider to OpenMapquest as there is an alternative Mapquest API.
  • Make the Mapquest open provider and LocationIQ provider a descendant of the nominatim provider as both return the same data.
  • Introduce MapQuest geolocation provider, separate from openmapquest.
  • Fix issue with Google reverse lookup return.
  • Review and update all reverse/geocode lookups from API documentation.
  • Standardize country codes in all returns to the iso2 coding.
  • Add support for converting iso3 to iso2 country codes.
  • Support generating street addresses for countries where the house number appears after the street name.
  • Improve display location name generation from address components.
  • Add Pelias Provider. OpenRoute is actually a hosted instance of the Pelias Geocoder, and now inherits its conversion functionality.
  • Standardize the addition of region codes, special casing the US States and Canadian Provinces, but using a global list as well.
  • If there is no address or locality then display the full region name instead of the code.
  • Add home country option which will hide the country from the location display.
  • Introduce Location Taxonomy.
  • Introduce bulk lookup capability.
  • fix issue where Micropub lookup did not add historic data.

4.3.0 ( 2021-01-09 )

  • Support for historic weather data in providers who offer it, see readme for details.
  • Addition of Visual Crossing as a provider. Visual Crossing is the first provider which in addition to 1000 queries per day, offers a pay per use model past that as opposed to a monthly subscription.
  • Addition of Meteostat as a provider. Meteostat is free for use, but is set up for historical weather data only.

4.2.3 ( 2021-01-03 )

  • Additional error checking
  • Improved mapping for the Custom Station provider

4.2.2 ( 2021-01-02 )

  • Measurements are always stored in metric units, and were displayed on the front end in imperial units when set.
    ** This version will now show it in imperial on the backend and convert to metric for storage after the fact.
  • ?sloc_units=imperial or ?sloc_units=metric will override the display to show one or the other if added to any URL
  • The units displayed will now show in the labels if edited in the Post UI.
  • All weather markup now uses a common function and label list.

4.2.1 ( 2020-12-10 )

  • Custom station provider said it would use the station within 10km, but was actually set to 100km. Fixed.

4.2.0 ( 2020-11-24 )

  • Introduce custom weather station provider
  • Add additional properties to the possible list of weather properties, inspired by the Weewx schema.
  • Add fallback weather station setting which allows for the system to try a second weather option if the first fails. This is normally for the providers with limited geographic coverage.
  • Fix issue where errant space in filenames made waxing and waning gibbous icons fail to appear.

4.1.12 ( 2020-11-01 )

  • Deprecate cache_key and switch to using key generated by class name. Cache will be enabled now by whether cache_time is set to 0 or not.
  • Sanitize coordinates when setting providers
  • Add caching functions to simplify weather provider caching.
  • Cache Time is now an Option for All Widgets

4.1.11 ( 2020-10-16 )

  • Do additional error checking to ensure timezone notices do not appear.
  • Start process of fixing caching.

4.1.10 ( 2020-10-11 )

  • Do not store timezone string if the offset matches the site timezone.
  • Do not store icon if it is the default icon.
  • Check for valid map provider before attempting to use it.
  • Sanitize REST API inputs
  • Trim whitespace on widget inputs
  • Switch OpenWeather Map to use the OneCall API.
  • Adjust NWS and OpenWeatherMap to Store Wind Gust Info.
  • Centralize static map img tag code and add lazy loading flag and srcset option.

4.1.9 ( 2020-08-15 )

  • Minor bug fixes and check to ensure compatible with WordPress 5.5
  • Dependency refresh

4.1.8 ( 2020-07-12 )

  • Add additional sanity checks due reports of errors caused by removal of provider.
  • Astronomical option now shows for all widgets, not just one.

4.1.7 ( 2020-07-12 )

  • Minor fix for failure in previous release which is not showing up in testing.

4.1.6 ( 2020-07-12 )

  • Introduce Custom Map Endpoint, based on a fork of a library by @aaronpk
  • Clean up markers and other settings on the map provider to look more consistent.
  • Moon phase code redone, and moonrise/moonset added
  • Fix is_day code

4.1.5 ( 2020-07-04 )

  • Wikimedia Maps is now deprecated. Their decision, not mine.
  • OpenRoute Service is added as a geoprovider.
  • GeoApify is added as a map provider.
  • Yandex added as a map provider. Does not require an API key for limited use.
  • Weather widgets all redesigned with new layout. Station and Airport widget now inherited from weather widget so same design in each.
  • Last Seen Widget Redesigned.
  • Moon Phase added to Last Seen Widget.

4.1.4 ( 2020-06-28 )

  • Fix error message when timezone result has no timezone string
  • Add ability to do map views of taxonomies and user archives

4.1.3 ( 2020-06-24 )

  • Fix issue where airport widget would only accept IATA codes(3 letters), not ICAO codes(4 letters).

4.1.2 ( 2020-06-12 )

  • Fix fatal error on user page

4.1.1 ( 2020-05-27 )

  • AerisWeather is now a provider
  • Add docblocks
  • PHP5.6 now minimum
  • Add additional icons
  • Optimizations, refactoring, and bugfix
  • Add the ability to change the location icon to various alternatives.
  • Add support for retrieving airline data
  • Improve airport data support
  • Standardize units of measure

4.0.6 ( 2020-04-12 )

  • Update HERE to use API Key over prior app id system
  • Update HERE Map Service to use new endpoint
  • Add HERE Weather and Geolocation Service
  • Added support for Met Office UK…using the nearest station
  • Add debugger tab for geocode lookup and weather lookup
  • Misc development fixes to remove duplicative code

4.0.5 ( 2020-03-18 )

  • Fix issue with timezone handling of photo EXIF data by allowing either timezone string or object
  • Fix issue with EXIF altitude handling

4.0.4 ( 2020-02-17 )

  • Update timezone handling in attachments
  • Add timezone offsets to REST API

4.0.3 ( 2020-01-26 )

  • Minor bug fixes
  • Fix precision of weather fields
  • Fix incorrect function call

4.0.2 ( 2019-12-22 )

  • Extract more information from Compass normalize it and pass it to WordPress
  • Extract flight information from Compass if in the properties and use this to replace the place name with flight info
  • Round weather and location data to 2 or less decimal places
  • Ensure timezone is a string
  • Introduce new location provider which will derive location from a 3 letter airport code because why not

4.0.1 ( 2019-11-24 )

  • Switch from removing pagination to limiting it to 100 per page by default
  • Filter query by location instead of filtering posts from the quantity afterward

4.0.0 ( 2019-11-18 )

  • Reimplement timezone handling using updated functions from WordPress 5.3 backported to this plugin
  • Enable UTC and offset override support provided you are using PHP5.5 or above
  • Reenable the option for nominatim despite it being prone to denial but provide the admin email address as requested by service
  • Add support for comments using the timezone of the post they are part of
  • APIXU is now Weatherstack.com
  • Sunrise and sunset function now in astronomical calculation class and factor in elevation to calculate visual sunset
  • Last seen widget now shows local time, sunrise and sunset times and map optionally
  • Add airport widget
  • Support user update using geojson
  • Add tabbed settings page
  • Compass API is now a user not a global setting
  • Add support for LocationIQ as a map and geo provider
  • Add support for WeatherBit as a weather provider
  • Add polyline encoder
  • Add support for historical locations, currently only Compass supported, in the Classic Editor
  • Support generating a static map with multiple location markers for archive views
  • Do not add current weather if publish date is not current
  • Enhance HERE map styles
  • Switch from default map width/height to width and aspect ratio
  • Switch default map zoom to summary descriptions over numerical values
  • Generate default map zooms when possible based on altitude or accuracy when available
  • Update various form fields to use number over text types
  • Add /map to archive pages and it will display a custom map archive page
  • Misc validation checks to prevent PHP notices
  • Fix timezone issues on attachments by using the location of the photo to update the timestamp
  • If no location is provided Micropub will lookup the location factoring in the publish time if one is provided

3.8.2 ( 2019-09-21 )

  • Minor Fixes to photo improvements released in 3.8.1
  • Prioritize determining timezone from location over published time when using Micropub

3.8.1 ( 2019-06-16 )

  • Fix issue where hidden location showed in RSS feed
  • Automatically lookup location for uploaded photos
  • Automatically convert timestamp on photo to published property

3.8.0 ( 2019-05-26 )

  • Add Geonames as a Provider
  • Fix issue with auto-location on micropub

3.7.2 ( 2019-05-17 )

  • Additional style fixes
  • Add option to show maps on archive and home pages not just single

3.7.1 ( 2019-05-12 )

  • Fix reported issue with icons being oversized when loaded without style sheet
  • Redid weather and location microformats markup. Temperature now marked up as h-measure and location as h-adr
  • Update formatting in widgets to not include microformats

3.7.0 ( 2019-04-13 )

  • Do not return maps if location is protected
  • Set Micropub posts with location to public visibility
  • Do not save raw weather data on Micropub
  • Enhance post filter to include all visibilities
  • Add location visibility column to posts
  • Fix storage of timezone on Micropub entries
  • Update airport data
  • Add bulk edit post location visibility
  • Automatically add private location on Micropub post
  • Clean up data on loading settings page

3.6.4 ( 2019-04-01 )

  • Fix/update default map styles for Mapbox
  • Add default map style now available for Bing

3.6.3 ( 2019-03-31 )

  • Add Compass as a location provider
  • Add APIXU as a weather provider

3.6.2 ( 2019-02-25 )

  • Fix timezone data conversion when get_the_date is called with a $post object
  • Fix micropub timezone storage to store name of timezone over entire timezone object which messed up display
  • Fix issue with default geographic options

3.6.1 ( 2019-02-23 )

  • Missing commit

3.6.0 ( 2019-02-23 )

  • Round altitude to nearest even number for display
  • Minor bug fixes for PHP notices
  • Add Wikimedia maps as a map provider. Link to their map site do not quite work but the static maps could be cached in future
  • Add setting to display altitude only if above a certain number of meters
  • Add zones to encourage privacy
  • Visibility returned in geo query if in zone

3.5.3 ( 2019-01-04 )

  • Fix bug in timezone scope causing Micropub to fail
  • Fix sunset darksky error ( props @xavierroy )
  • Rename Private to Hidden for logged in users to indicate location isn’t shown if not logged in
  • Show map on load not just on lookup
  • Fix map zoom setting
  • Fix properties not showing when post displayed in editor
  • When HTML5 geolocation provider is set the rest endpoint will use the user location is queried as you cannot use a browser option outside of the browser

3.5.2 ( 2018-12-22 )

  • Fix visibility issue finally
  • Fix widget title issues
  • Style changes/fixes( thanks @asuh)
  • Add location provider that always returns the location in the author user profile
  • Add endpoint to update the user location
  • Show private or protected location if logged in as user who can publish posts with the notation private

3.5.1 ( 2018-12-19 )

  • Did not merge in fix before pushing

3.5.0 ( 2018-12-19 )

  • Another attempt to fix the setting of private location by adding testing
  • Enhance rest integration
  • Add timezone endpoint
  • Add geocode endpoint to replace reverse endpoint
  • Add airport lookup using method used by @aaronpk
  • Rename metric to SI to be more accurate as multiple measurements not just temperature
  • Store measurements in SI(meters, celsius, etc) and allow for change to imperial on the fly
  • Store additional weather parameters
  • Add sunrise and sunset parameters
  • Split Weather Station into a Separate Widget
  • Remove Station ID API settings in favor of widget
  • Add support for the US National Weather Service as a weather provider. It finds the nearest weather station and reports current conditions
  • Update Micropub return to add weather even if there is not a location lookup occurring
  • Add Micropub query for location
  • Removal of hidden underused feature that set timezone based on browser settings
  • Fix of map endpoint and add map url to the reverse geocode endpoint as it is merely a URL
  • Map now displayed when location is looked up.
  • Plugin will now work with Gutenberg, though not strictly built for it.

3.4.1 ( 2018-11-02 )

  • Fix for displaying map when altitude but no location is set
  • Automatically update timezone based on location on Micropub posts

3.4.0 ( 2018-10-27 )

  • Fix for incorrect return when there is an error
  • Nominatim began to block reverse traffic so added additional options for reverse lookup.
  • Map Providers and Geo Providers are now separated
  • Unload Jetpack Geo Location which was added unknown to me in 2017. However added compatibility functions to ensure functionality matches
  • Declares post-type support for geo-location which is something the JetPack plugin does
  • Adds location meta tags
  • Add sanitize function that ensures geo_public is always saved as an integer
  • Empty address now causes plugin to display coordinates if not private
  • Provider registration now done by function as opposed to filter
  • Mapquests hosted version of Nominatim now offered but requires API Key
  • Mapquest Static Maps now a supported map provider
  • HERE Maps is now a supported map provider
  • Google is now a supported reverse lookup provider
  • Bing is now a supported reverse lookup provider
  • Elevation/altitude in meters is now calculated using an Elevation API when not supplied by the location provider
  • DarkSky is now a supported weather provider
  • Removal of the SLOC_PUBLIC constant in favor of this being stored in the options table
  • Default Location Visibility now allows all three options
  • Display altitude over 500m
  • Auto add weather and location textual description when coordinates are provided

3.3.8 ( 2018-05-27 )

  • Fix for jsonFeed error

3.3.7 ( 2018-05-14 )

  • Fix for jsonFeed privacy settings

3.3.6 ( 2018-05-12 )

  • Privacy and data collection statement
  • Add geoJSON to JSONFeed
  • Fix incorrect permissions for GEORSS

3.3.5 ( 2018-04-15 )

  • Minor location attachment storage changes

3.3.4 ( 2018-03-27 )

  • Fix issue when default is not set

3.3.3 ( 2018-03-26 )

  • Add markers to static map and map link for Mapbox
  • Clean up URL generation code for static maps
  • Update jstz dependency and set up scripted update for future
  • Remove hard-coded options for provider selection and make code more dynamic to allow third-party additions
  • Add support for alternative geolocation providers in the backend. Currently defaults to the HTML5 browser option in the frontend
  • Weather now supported for non-SSL sites

3.3.2 ( 2018-02-03 )

  • Simplify and refactor metadata saving functionality
  • Improvements to metaboxes ( props to @kingkool68 for contributions )
  • Refactored location JS
  • Add confirmation before clearing data
  • Added loading spinner while retrieving location information
  • Move location visibility and lookup to Publish Metabox
  • Rename visibility settings in an attempt at clarity
  • Auto-load weather when retrieving location
  • Add start of function to retrieve location optionally on backend
  • Icons change color when hovered over to indicate functionality

3.3.1 ( 2018-01-13 )

  • Add configuration setting for both imperial and metric temperatures. Defaults to metric unless locale is en_us.
  • Store units in each new post in case the setting is switched
  • Minor bug fixes
  • Check for existence of property before trying to display it

3.3.0 ( 2018-01-11 )

  • Introduce Weather Icons, licensed under SIL OFL 1.1
  • Add support for weather providers
  • Initial display for temperature
  • Add user profile settings for location
  • Add setting to set if user location is updated when a new post with location is published by that user
  • Add weather widget that can be set based on coordinates, user last reported location, or station ID
  • Allow filtering post admin and comment admin by location
  • Add last seen widget

3.2.4 ( 2017-12-09 )

  • Fix issue with rendering of timezone select when manual offset
  • Disable timezone override for now when manual offset is used as not a valid timezone string
  • Add p-location and change markup to accommodate
  • Update location icon
  • Add settings page and move settings out of media

3.2.3

  • Restore PHP 5.3 and 5.4 compatibility
  • Fix issues raised by automated testing
  • If you click the clock next to the word timezone it will set the timezone based on browser time

3.2.2

  • Allow setting timezone from Micropub posts(requires update to Micropub plugin)

3.2.1

  • Show settings for current default map provider only
  • Add style settings for each map provider ( props @miklb )

3.2.0

  • Allow passing of coordinates directly in constructor for map provider
  • Switch to argument array instead of individual properties for most display and data functions
  • Support per post zoom settings
  • Set initial map zoom based on geolocation accuracy
  • Quick and dirty Bing Maps support
  • Set location metadata for attachments if in EXIF data
  • Add location metabox to attachments
  • Add arguments for marking up location
  • Add GEORSS support from defunct project

3.1.0

  • New release with more functionality coming soon
  • get_geodata function now supports WP_Post, WP_Comment, and WP_Term objects
  • Fix registration of default settings
  • Add global setting for public or private by default
  • Switch from admin ajax to REST Route API for simple endpoints
  • Add map endpoint to retrieve a URL for a map based on coordinates
  • Add reverse endpoint to retrieve an address object based on coordinates
  • Allow arguments to be passed to map provider
  • Remove popup location metabox and replace with slidedown metabox
  • Combine geolocation and reverse lookup buttons
  • Set public/private to system default if post is published outside of Post UI

3.0.4

  • Fix Activation Issue

3.0.3

  • Add support for queries and permalinks to show location enabled posts
  • Use built-in WP timezone list generation code
  • Fix error with private setting
  • Put in check for improperly timezone setting to avoid exception error

3.0.2

  • Continuing to iterate based on initial feedback to 3.0.0
  • Timezone box now hidden until checked
  • Timezone now stored in geo_timezone in interest of consistency
  • Icon Size for some fixed
  • Priority of location and map box increased
  • Text added to Location box to explain how to complete
  • Constant SLOC_PUBLIC and filter geo_public_default allow the default to be changed from public(1) to private(0) if no geo_public is set
  • Display Address generation tweaks
  • Display now shows all HTML5 geolocation API stats.

3.0.1

  • Some quick fixes on the release. Due to issues with the removal of the old location data, it will no longer be removed. Instead only the extra display metadata will be removed.
  • If there is no geo_address set and there are coordinates a geo_address will be automatically set along with timezone

3.0.0

  • New Version Takes Advantage of new WordPress Term Metadata to create Venues (Feature disabled until future release)
  • The most Javascript I’ve ever used in a WordPress plugin. Retrieving location information is now done without page refresh.
  • Timezone Override is set by location lookup.
  • Google Map Services will now require an API key to be provided.
  • MapBox is now the static map provider if you are using OSM maps and an API key must be provided
  • You Can Now Choose Map Providers but not reverse lookup providers which may come in future
  • Full Address data is no longer stored in the post. You will have the choice of either a textual description and coordinates in the post
    or assigning a venue which can have full data. Venue support in future version and is disabled here.
  • Warnings no longer showing in debug logs.
  • Displayed name and timezone are now set if Micropub plugin provides geo coordinates

2.1.0

  • Revamp in Text Display Parameters, now offering three levels of Detail
  • Coordinates will now display and Location will link to map if set for full address

2.0.3

  • Google Static Maps now link to Google Maps
  • Nominatim now defaultly tries to retrieve in the language of the blog

2.0.2

  • Fixed formatting on timezone feature as it was not displaying the proper date formatting and falling back to default

2.0.1

  • Option to override the displayed timezone on a per post basis for posts made at a location other than the default

2.0.0

  • Complete Rewrite with improved scoping
  • Google Maps is now a provider of static maps
  • Maps providers are built with a common interface to allow multiple providers

1.0.1

  • Some refinements to the presentation

1.0.0

  • Initial Release
VIP777 login Philippines Ok2bet PRIZEPH online casino Mnl168 legit PHMAYA casino Login Register Jilimacao review Jl777 slot login 90jili 38 1xBet promo code Jili22 NEW com register Agila Club casino Ubet95 WINJILI ph login WINJILI login register Super jili168 login Panalo meaning VIP JILI login registration AGG777 login app 777 10 jili casino Jili168 register Philippines APALDO Casino link Weekph 50JILI APP Jilievo xyz PH365 casino app 18JL login password Galaxy88casino com login superph.com casino 49jili login register 58jili JOYJILI apk Jili365 asia ORION88 LOGIN We1win withdrawal FF777 casino login Register Jiligo88 philippines 7777pub login register Mwgooddomain login SLOTSGO login Philippines Jili188 App Login Jili slot 777 Jili88ph net Login JILIMACAO link Download Gcash jili login GG777 download Plot777 app download VIPPH register Peso63 jili 365.vip login Ttjl casino link download Super Jili 4 FC178 casino - 777 slot games JILIMACAO Philippines S888 register voslot LOVE jili777 DOWNLOAD FK777 Jili188 app CG777 app 188 jili register 5JILI login App Download Pkjili login Phdream Svip slot Abcjili6 App Fk777 vip download Jili888 register 49jili VIPPH register Phmacao co super Taya777 link Pogo88 real money Top777 app VIP777 slot login PHMACAO 777 login APALDO Casino link Phjili login Yaman88 promo code ME777 slot One sabong 888 login password PHMAYA casino Login Register tg777 customer service 24/7 Pogibet slot Taya777 org login register 1xBet live Acegame888 OKBet registration JILIASIA Promotion Nice88 voucher code AgilaClub Gaming Mnl168 link Ubet95 free 50 PHMAYA casino login JLBET 08 Pb777 download 59superph Nice88 bet sign up bonus Jiliyes SG777 download apk bet88.ph login JILIPARK casino login Register Philippines PHMAYA APK CC6 casino login register mobile PHMACAO com download MWPLAY app JILIPARK Download Jili999 register link download Mnl646 login Labet8888 download 30jili jilievo.com login Jollibee777 open now LOVEJILI 11 18JL casino login register Philippines JILIKO register Philippines login Jililuck 22 WJPESO casino PHMAYA casino login Jili777 login register Philippines Ttjl casino link download W888 login Register Galaxy88casino com login OKBet legit tg777 customer service 24/7 Register ROYAL888 Plot777 login Philippines BigWin Casino real money PHLOVE 18JL PH 18JL casino login register Philippines SG777 Pro Taya777 pilipinong sariling casino Jiligames app MNL168 free bonus YesJili Casino Login 100 Jili casino no deposit bonus FC178 casino free 100 Mwcbet Download Jili888 login Gcash jili download JILIMACAO 123 Royal888 vip 107 Nice888 casino login Register FB777 link VIPPH app download PHJOIN 25 Ubet95 legit phcash.vip log in Rrrbet Jilino1 games member deposit category S888 live login FF777 download FC777 VIP APK ME777 slot Peso 63 online casino OKGames app Joyjili customer service superph.com casino FB777 Pro Rbet456 PH cash online casino Okbet Legit login taruhan77 11 VIPPH 777Taya win app Gogo jili 777 Plot777 login register Bet99 app download Jili8989 NN777 VIP JP7 fuel Wjevo777 download Jilibet donnalyn login Register Bossjili ph download 58jili login registration YE7 login register FC777 new link login 63win register Crown89 JILI no 1 app Jili365 asia JLBET Casino 77PH fun Jili777 download APK Jili8 com log in CC6 casino login register mobile ph365.com promotion phjoin.com login register 77PH VIP Login download Phdream live chat Jlslot2 Me777 download Xojili legit PLDT 777 casino login Super Jili Ace Phdream 44 login Win888 casino JP7 Bp17 casino login TTJL Casino register FB777 slot casino Jili games online real money phjoin.com login register BET99 careers ORION88 LOGIN Plot777 login Philippines Labet8888 login JILI Official Pogibet app download PH777 casino register LOVEJILI app Phvip casino VIP jili casino login PHMACAO app 777pnl legit YE7 casino online Okbet download CC6 bet app 63win club Osm Jili GCash LOVEJILI 11 Www jililive com log in Jili58 casino SuperAce88 JiliLuck Login Acegame 999 777pnl promo code MWPLAY good domain login Philippines Pogo88 app Bet casino login Superph98 18jl app download BET999 App EZJILI gg 50JILI VIP login registration Jilino1 new site pogibet.com casino Jili Games try out Gogojili legit 1xBet Aviator WINJILI ph login Jili168 register How to play Jili in GCash 777pnl PHDream register login JILISM slot casino apk FB777 c0m login EZJILI Telegram MWCASH88 APP download Jili88 vip03 APaldo download 1xBet 58JL Casino 58jl login register Jili scatter gcash OKJL slot jili22.net register login 10phginto APaldo 888 app download 1xBet live FC178 Voucher Code 58jl Jili888 ph Login 365 Jili casino login no deposit bonus JP7 VIP login PHBET Login registration 58jili login registration VVJL online Casino Club app download Jili77 login register Jili88 ph com download KKJILI casino WJ peso app Slot VIP777 BigWin69 app Download Nice88 bet Suhagame philippines Jiliapp Login register Qqjili5 Gogo jili helens ABJILI Casino OKJL download 1xBet login mobile Pogibet 888 777 game Okgames casino login Acegame888 Bet86 promotion Winph99 com m home login JP7 VIP login 20phginto VIPPH register KKJILI casino OKJILI casino Plot777 app download NN777 register bossphl Li789 login Jiligo88 app Mwcbet Download Betjilivip Https www BETSO88 ph 30jili Https www BETSO88 ph Jilievo Club Jili888 register Jili777 download APK JILI77 app download New member register free 100 in GCash 2024 Royal888casino net vip JOLIBET withdrawal MW play casino Jili365 login FB777 Pro Gold JILI Bet99 registration 55BMW red envelope Bet199 login philippines JILI188 casino login register download Phjoin legit or not Bigwin 777 Bigwin pro Apaldo PH pinasgame JILIPARK Login registration JiliApp ph04 Ph143 Jili168 login app Philippines MW Play online casino APK 77tbet register 8k8t Bigwin casino YE7 Download App Ph365 download apk Acejili Ph888 login S888 juan login 63win withdrawal Okbet cc labet 8888.com login password Mwbet188 com login register Philippines MNL168 net login registration kkjili.com download Jili888 Login registration Abc Jili com Download JILIPARK casino login Register Download AbcJili customer service live777. casino Jilievo casino jilievo APP live casino slots jilievo vip Jolibet legit PH888 login Register 888php register 55BMW win Mwbet188 com login register Philippines AbcJili customer service Jili88 ph com app 200Jili App MAXJILI casino ROYAL888 deposit mi777 Jili games free 100 ACEGAME Login Register Jilibet donnalyn login Voslot register Jilino1 live casino 18jl login app apk JILI Vip777 login Phtaya login Super Ace casino login Bigwin 777 Ubet95 free 190 superph.com casino Jili22 NEW com register SG777 win Wjpeso Logo 1xBet login mobile Jili88 casino login register Philippines sign up Okbet cc Agg777 slot login Phv888 login P88jili download jiliapp.com- 777 club Fish game online real money One sabong 888 login password QQJili Taya365 slot mnl168.net login Taya365 download Yes Jili Casino PHMACAO APK free download 365 casino login Bigwin 29 JILISM slot casino apk Wow88 jili777.com ph 888php login 49jili VIP Jilino1 legit SG777 slot Fish game online real money Voslot free 100 18jl login app apk OKJL app Jili22 NEW com register Nice88 free 120 register no deposit bonus Sugal777 app download 288jili PHJOIN VIP com Register Jl77 Casino login KKjili com login Lovejili philippines Pogo88 casino SLOTSGO VIP login password Jili22 net register login password Winph 8 we1win 100 Jili slot 777pnl promo code Sg77701 Bet88 download for Android PH365 casino Royal Club login Jili88 casino login register MWPLAY login register Jilibay Promotion 7SJILI com Register FC777 casino link download Royal meaning in relationship OKBET88 AbcJili customer service 777ph VIP BOSS JILI login Register 200Jili App KKJILI casino login register maxjili Mwcbet legit JILIASIA 50 login Milyon88 com casino login 8k8app17 Royal slot Login Phmacao rest 338 SLOTSGO Ph888 login PHGINTO com login YY777 app Phdream register Jili22 net register login password Lucky Win888 Jiligames API Agila club VIP 77PH VIP Login download Acegame888 register PHMAYA Download Jili88 online casino 7XM Lovejili philippines 63win register Jilimax VOSLOT 777 login 18JL Casino Login Register JILIASIA 50 login 50JILI VIP login registration 7XM com PH Nice888 casino login Register 58jl Jili168 casino login register download Timeph philippines 90jilievo Jili88 casino login register OKBet legit JILI slot game download Bet99 promo code 58jili app 55BMW com PH login password KKjili casino login bet999 How to play Jili in GCash BigWin69 app Download OKJL Milyon88 com casino login phdream 888php register Ph888 PH777 registration bonus JLBET Asia LOVEJILI download Royal Casino login 646 ph login Labet8888 review JLBET Casino Jili888 ph Login Wjpeso Wins JILIMACAO 666 Jiliplay login register JILIAPP com login Download JiliLuck download WIN888 PH JL777 app Voslot777 legit Pkjili login 20jili casino Jolibet login registration Phjoin legit or not Milyon88 com casino register JILI apps download 88jili login register Jili 365 Login register download 11phginto Jili777 vip login Ta777 casino online Swertegames Taya365 download 777PNL online Casino login Mi777 join panalo 123 JILI slot 18jili link Panalo lyrics Jiliplay login philippines yaman88 Bet88 login Jili888 Login registration FF777 TV Ok2bet app Pogibet casino philippines Www jilino1 club WOW JILI secret code AB JILI Jili168 online casino BET99 careers Go88 slot login JILI Vip777 login CG777 Casino link OKBet GCash www.50 jili.com login WINJILI download Lucky bet99 Acegame888 77ph com Login password ACEGAME Login Register ACEGAME casino Swerte88 login password Wj slots casino APALDO Casino Phjoin slot JLBET com JLBET ph Taya777 org login 49jili slot Svip slot Jili77 download APK 200jiliclub Bet199 philippines Jili888 Login registration 88jili withdrawal phjoin.com login register Swerte88 login registration Voslot777 legit Superph11 AAA JILI app download Www jililive com log in VIP777 Casino login download Jili77 download APK Jilibet donnalyn login Register JILICC sign up Pogibet app download www.mwplay888.com download apk Jili68 Jililuck App Download APK Yy777 apk mod Jili77 vipph.com login labet8888.com app Phdream live chat Ph646 login register mobile 7777pub download Jolibet Fortune Tree 90JILI app 18JL login Philippines JLSLOT login password 50JILI fun m.nn777 login 88jili withdrawal PH Cash Casino APK 888PHP Casino LINK Boss jili app download Jili999 login register FB777 download APK Free 100 promotion JILIPARK Download VIP PH casino JILIHOT ALLIN88 login 8K8 com login PHMAYA casino login 58jili withdrawal Ubet95 free 100 no deposit bonus KKJILI online casino M GG777 100jili APP JILI888 slot download PHBET88 Jili Games demo 1xBet OKJL Casino Login Nice888 casino login Register Betso88 App download APK VIP777 app Gcash jili register 1xBet registration 58jili withdrawal Jili63 Suhagame23 218 SLOTSGO AGG777 login Philippines Bay888 login JILIVIP 83444 PHCASH com casino login Jilievo 666 Jili 365 VIP register PHMAYA link PH cash VIP login register Yaman88 casino JP7 VIP We1Win download free rbet.win apk Jili168 casino login register download Milyon88 com casino register 18JL login app 88jili withdrawal AAA Casino jilibet.com register Winjili55 UG777 login app PH777 download Jili365 bet login app Osm Jili GCash 77tbet philippines GI Casino login philippines 88jili login FC178 casino free 100 SG777 Com Login registration Nice88 free 100 Oxjili Royal777 Top777 login FB777 live 200jili login Gogojili legit Yes Jili com login phcash.vip casino Sugal777 app download 58JL app Login Panalo login JILI games APK Lucky99 Slot login Jili scatter gcash 7XM APP download FB JILI casino login download PHMACAO app ROYAL888 Link Alternatif ACEPH Casino - Link 55bmw.com casino Timeph app Osm Jili GCash M GG777 Ubet95 login Jiligo88 CG777 Casino Philippines Tayabet login Boss jili app download YY777 app download Nice88 free 120 register no deposit bonus Bossjili7 XOJILI login 68 PHCASH login ezjili.com download apk Jili 365 VIP APK Milyon88 pro Jili88 casino login register download Jili online casino AgilaPlay Jili scatter gcash 7777pub login CC6 app bonus JK4 online PHJOIN casino Joyjili login register 22phmaya 5JILI Casino login register Betso88 VIP Winph 8 Phmacao rest JILI Slot game download free s888.live legit APALDO Casino link Plot 777 casino login register Philippines Ph646wincom Jili168 login app Philippines KKJILI casino Apaldo PH Phdream live chat Slot VIP777 PH888BET 22 phginto 50JILI APP MWPLAY login register Slotph We1Win apk VIP777 slot login Nice88 PRIZEPH online casino Jilipark App 7XM app for Android Jili58 Jili168 free 100 APALDO 888 CASINO login APaldo download Jiliasia8 com slot game phcash.vip casino OKJL Casino Login YY777 live Jili888 register Winjiliph QQ jili casino login registration Abcjili5 NN777 register Phvip casino Taya 365 casino login OKBet app Osm Jili GCash Nice88 free 100 5JILI Casino login register Bet88 app download 5 55bmw vip Jlph11 JILI slot casino login Nice88 bet sign up bonus JILI Slot game download for Android Abc Jili com Download FF777 TV Peso 63 online casino MILYON88 register free 100 7777pub JILIASIA 50 login CC6 online casino latest version Royal Club apk 1xBet login registration CG777 Casino Philippines 1xBet app Mwcbet net login Password LOVEJILI 21 FBJILI Now use Joyjili Promo code JILI188 casino login register download PHMACAO SuperPH login AGG777 login app Peso 63 online casino filiplay Sugal777 app download Galaxy88casino com login EZJILI Telegram JiliApp ph04 Jilino1 com you can now claim your free 88 PHP download 63win Coupon Code PHDream 8 login register Philippines MNL168 website CC6 online casino register login 3jl app download apk Jlph7 TA777 com Login Register password 5jili11 FF777 casino login Register KKJILI casino login register 10 JILI slot game 3JL login app Jili100 APP Winjili55 Milyon88 info Jilino1 VIP login YE7 bet sign up bonus Apaldo games Wj casino app AbcJili win.ph log in Jili22 VIP 204 SG777 Jl77 Casino login YY777 app download Jilimacao Okjl space Wjevo777 download Ubet95 free 100 no deposit bonus PHMAYA APK Xojili legit 77PH bet login Taya365 pilipinong sariling casino LOVEJILI AAAJILI Casino link Jollibee777 How to play mwplay888 18jl app download jilievo.com login password VIP PH casino mnl168.net login JiliLuck download Win2max casino 777PNL download app Ubet Casino Philippines Win888 Login Jili88 casino login register Philippines sign up Bet99 APK 18JL casino Login register Download Naga888 login JLPH login PHMACAO APK free download How to register Milyon88 Royal888ph com login JiliCC entertainment WINJILI customer service PHBET88 Jili888 Login Philippines SG777 slot FBJILI Jili365 bet login app Ubet95 free 100 no deposit bonus Taya 365 casino login LOVEJILI Jili777 free 150 YE7 casino login register download QQJili 58jili login Download S888 sabong Gi77 casino Login taya777 customer service philippines number 24/7 WINJILI customer service Https www wjevo com promocenter promotioncode Nice99 casino login Phdream 44 login Mi777app 777PNL online Casino login phjl.com casino JILILUCK promo code Pogibet 888 login BigWin Casino legit Jolibet app download Jilli pogibet.com casino JP7 VIP login Ug7772 Phjoy JILIMACAO 123 PH143 online casino jili365.bet download PH cash VIP login register Abc Jili Register Mwgooddomain login 58JL Casino link 365 Jili casino login no deposit bonus JILIEVO Casino 777 60win OKGames casino 49jili VIP kkjili.com app JILIPARK casino login Register Philippines Agila Club casino OKGames GCash OKBet casino online S888 juan login Yaman88 log in Winph99 com m home login Jili88 casino login register Winjiliph CG777 Casino LOGIN Register Ubet Casino Philippines Agilaclub review Is 49jili legit ph646 JLBET link JiliCC entertainment Jilicity withdrawal Ta777 casino online Jili777 login register Philippines JP7 coupon code Milyon88 one Ug7772 Jilibet casino 77PH VIP Login download Jili live login 68 PHCASH 7XM APP download Boss jili login MWCASH88 APP download Jilicity login Acegame888 real money LIKE777 JILILUCK app JiliBay Telegram Bet199 login philippines Ph646wincom PHJOIN login OKGames register JILIASIA withdrawal Panalo login 88jili Login Philippines Wjevo777 download phjl.com casino Fcc777 login Labet8888 login JILI8998 casino login PHJL Login password Jilibay Voucher Code 28k8 Casino P88jili download 49jili apps download Fk777city we1win CG777 Casino login no deposit bonus MW play casino FF777 casino login Register Philippines download JILIAPP com login Download Bet199 PHGINTO com login Bet88 bonus Sw888 withdrawal Vvjl666 Jiliapp 777 Login QQ jili login Jilicity download Jili188 login Philippines Timeph philippines Casino Club app download Nice88 bet login registration Bay888 login PH Cash casino download Jiliko777 Nice88 PH 777pnl Jiliplay login register JILI VIP casino cg777 mwcbets.com login Fbjili2 JILIAPP download 7xm login 77jl.com login JILI Slot game download for Android MWPLAY app superph.com casino Nice88 free 120 WJ peso app Jili58 register 3jl app download apk Betso88 link OKGames login free JILIASIA 888 login 58jl login register Jilibet888 68 PHCASH login Jili88ph net register 55BMW Casino app download APK Abc Jili com Download FB777 register login Philippines Jilievo org m home JiliLuck download jlbet.com login register Jp7 casino login 18JL Casino Login Register YE7 casino APK prizeph Boss jili login Royal logo FC178 casino - 777 slot games Taya777 pilipinong sariling casino Ph888 MWPLAY app @Plot777_casino CG777 login BOSS JILI login Register JILI PH646 login Vvjlstore Mi777 casino login Download Okgames redeem code 50JILI VIP login registration Bet88 login AGG777 login Philippines JILIMACAO Yesjili com legit P88jili com login OKBET88 Gold JILI VIP PH casino VIP PH log in bet88.ph legit kkjili.com app JiliLuck Login JILI Vip777 login 63win withdrawal bet999.ph login m.nn777 login 58JL 8k8app17