google-fusion-tables

GAS Library and WebApp Permissions [ReferenceError: “service” is not defined.]

本秂侑毒 提交于 2021-01-29 03:34:53
问题 Background / Summary I have been using libraries extensively and I am now getting my permissions setup so I can distribute the app to some users for testing. Unfortunately, it's being very unpredictable. I've simplified the problem as follows: I have a simple webApp that is making a simple API call to a fusion table. It calls a function in my Fusion Tables Library. The function in my Fusion Table Library also uses a function from my OAuth Library. This process has worked perfectly when

Can I have part of Google Apps Script code execute as me while the rest executes as the accessing user?

ⅰ亾dé卋堺 提交于 2020-05-14 10:24:19
问题 I have a apps script web app that writes to a fusion table, as well as a few spreadsheets which it periodically caches. I do not want to provide edit access to the fusion table to colleagues, who could just go and edit entries as they see fit. Currently the web app executes as the user, for anyone within my organization, which is the intention. However, I'd rather the web app execute any queries as myself, so that I don't need to explicitly provide permissions to each individual user that

Can I have part of Google Apps Script code execute as me while the rest executes as the accessing user?

安稳与你 提交于 2020-05-14 10:20:27
问题 I have a apps script web app that writes to a fusion table, as well as a few spreadsheets which it periodically caches. I do not want to provide edit access to the fusion table to colleagues, who could just go and edit entries as they see fit. Currently the web app executes as the user, for anyone within my organization, which is the intention. However, I'd rather the web app execute any queries as myself, so that I don't need to explicitly provide permissions to each individual user that

Can I have part of Google Apps Script code execute as me while the rest executes as the accessing user?

喜夏-厌秋 提交于 2020-05-14 10:20:07
问题 I have a apps script web app that writes to a fusion table, as well as a few spreadsheets which it periodically caches. I do not want to provide edit access to the fusion table to colleagues, who could just go and edit entries as they see fit. Currently the web app executes as the user, for anyone within my organization, which is the intention. However, I'd rather the web app execute any queries as myself, so that I don't need to explicitly provide permissions to each individual user that

Google Fusion Table SQL query where clause - only AND works, not OR?

坚强是说给别人听的谎言 提交于 2020-02-01 05:16:24
问题 My SQL query is: SELECT * FROM 1910640 WHERE stype='P' OR stype='ERC' OR stype='PERC' ORDER BY ST_DISTANCE(geometry, LATLNG(-0.12623619999999391,51.5001524)) LIMIT 6 This results in a "parseerror". If I replace OR with AND the query returns success: SELECT * FROM 1910640 WHERE stype='P' AND stype='ERC' AND stype='PERC' ORDER BY ST_DISTANCE(geometry, LATLNG(-0.12623619999999391,51.5001524)) LIMIT 6 Anyone else ran into this with Fusion Tables and have a solution/workaround? The API doc does

Android link to Google Fusion Table

痞子三分冷 提交于 2020-01-16 07:18:06
问题 I want to develop an app on the Android. Which can get the wifi information then insert into the fusion table. Is there any example code or source code avaliable to show how could I do with it ? 回答1: https://developers.google.com/fusiontables/docs/sample_code OR try App inventor Fusion Tables Control http://code.google.com/p/app-inventor-for-android/ 回答2: Check out the FusionTableService class in my Android application. This should be everything you need. 来源: https://stackoverflow.com

How can I load a Fusion Tables csv from a client application?

和自甴很熟 提交于 2020-01-15 12:37:08
问题 I was just playing with Google Fusion Tables and I was wondering how I could load a csv from the client side. So far I've tried several options: From actionscript 3.0: var r:URLRequest = new URLRequest("https://www.google.com/fusiontables/exporttable?query=select%20*%20from%203685185%20"); r.method = URLRequestMethod.GET; var l:URLLoader = new URLLoader(r); l.addEventListener(Event.COMPLETE,loaded); l.addEventListener(HTTPStatusEvent.HTTP_STATUS,onHTTPStatus); function onHTTPStatus(event

Fusion Tables insert row with PHP basic example

我是研究僧i 提交于 2020-01-15 11:28:28
问题 Is there is an updated PHP client library for Fusion Tables? or maybe a very concrete copy+paste insert rows example? I I have visited https://code.google.com/p/google-api-php-client/ and downloaded their latest release file, but while having examples for lots of other google apis, I can't find any mention of fusion tables examples. Additionally I have been trying to get https://github.com/marciuz/fusion-table-php-api-and-shell fantastic project to work, but keep receiving "invalid

Is there a limit to how many different markers you can have in a fusion layer?

て烟熏妆下的殇ゞ 提交于 2020-01-15 11:12:12
问题 I have this implementation with fusion table layers where I try to use the pre-defined marker icons with letters A-Z to show the result of a search query on map (much like the original google maps does). The way I achieve this is by first creating a layer, with a generic icon for all markers.. var layer = new google.maps.FusionTablesLayer({ query: { select: 'Geometry', from: 0000000 }, map: map, options: { suppressInfoWindows: true }, styles: [{ markerOptions: { iconName: "measle_white" } }]

Is there a limit to how many different markers you can have in a fusion layer?

巧了我就是萌 提交于 2020-01-15 11:09:11
问题 I have this implementation with fusion table layers where I try to use the pre-defined marker icons with letters A-Z to show the result of a search query on map (much like the original google maps does). The way I achieve this is by first creating a layer, with a generic icon for all markers.. var layer = new google.maps.FusionTablesLayer({ query: { select: 'Geometry', from: 0000000 }, map: map, options: { suppressInfoWindows: true }, styles: [{ markerOptions: { iconName: "measle_white" } }]