Here Geometry buffer = geom.buffer(5.00);
Thus buffer contains a data as polygon and the latitude and longitude of all the points in the 5km radius .
This line of code that I wrote isn't working . What is a better way to go about it ?
开发者_C百科String query1 = " INSERT INTO buffer(the_geom) " + buffer + ";";
So what should be the sql query ?
insert into table_name values (column1, column2,...) values (column1Value, column2value,...)
精彩评论