コード例 #1
0
        private void on_location_update(cef_get_geolocation_callback_t *self, cef_geoposition_t *position)
        {
            CheckSelf(self);

            var mPosition = CefGeoposition.FromNative(position);

            OnLocationUpdate(mPosition);
        }
コード例 #2
0
 /// <summary>
 /// Called with the 'best available' location information or, if the location
 /// update failed, with error information.
 /// </summary>
 protected abstract void OnLocationUpdate(CefGeoposition position);