How to get the overall position of a tile?

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By PerduGames
:warning: Old Version Published before Godot 3 was released.

I have a tilemap in the scene, and I need to get the overall position of a tile.

:bust_in_silhouette: Reply From: PerduGames

I think I got it.

var pos_cell_global=get_node("TileMap").map_to_world(Vector2(x, y)) 

where Vector2 (x, y) is a position in the grid of some cell.