Questions tagged [tiles]

Apache Tiles renders dynamic websites in a Java Servlet container.

Apache Tiles™ is a templating framework built to simplify the development of web application user interfaces.

Tiles allows authors to define page fragments which can be assembled into a complete page at runtime. These fragments, or tiles, can be used as simple includes in order to reduce the duplication of common page elements or embedded within other tiles to develop a series of reusable templates. These templates streamline the development of a consistent look and feel across an entire application.

Related Links:

1297 questions
10
votes
1 answer

Tiles vs. JSP includes

We have a large web-app with hundreds of jsps pages. To avoid repeating markup up blocks we are considering making use of apache tiles. Now it seems messy to have a combination of both
plodder
  • 2,304
  • 18
  • 19
9
votes
4 answers

Spring 3.0.5 / Tiles 2.2 Error

I have a large application used in a production environment. My tiles setup is complex, with many tiles per page. The application works great with the exception of one thing. After starting the server the first page load throws an exception, an…
Andrew Carr
  • 777
  • 6
  • 16
9
votes
2 answers

Isometric tiles drawing and picking - JAVA

I'm trying to draw isometric tiles in Java and implement a tile picking system using the mouse cursor. I draw the tiles using these math formulas I found and adapted to my tile textures which you can find below. Tiles are 64x64px but flat tiles are…
RomainImberti
  • 121
  • 1
  • 11
9
votes
2 answers

Sitemesh or Tiles

Working on the design of a web-application and since it will be a large application so can not reply on jsp include feature so have to use some other solution and for that we came up with Tiles and Sitemesh. We are new to both of them so any insight…
Umesh Awasthi
  • 23,407
  • 37
  • 132
  • 204
9
votes
3 answers

Ensuring all tiles are loaded in Open Layers 3 XYZ source

We have some layers that make use of a ol.source.XYZ source. For the loading strategy we use ol.loadingstrategy.tile(new ol.tilegrid.createXYZ({})). We need to ensure that all tiles have been completely loaded in the map view before proceeding with…
Scott
  • 729
  • 1
  • 11
  • 30
9
votes
5 answers

Spring Boot with Apache Tiles

I am attempting to migrate my java application to Spring Boot. Currently, I am running Spring MVC 3.2 with Apache Tiles. When I migrated to Spring Boot, my controllers still get called fine, they pass the view to the view Resolver, but when Tiles…
user3089280
  • 381
  • 2
  • 4
  • 12
8
votes
2 answers

Does Google Maps Android MapView use different resolution tiles for different screen densities?

I am trying to overlay my own custom images on top of a MapView in Android. It is important that my images align correctly with the underlying Google Maps tiles, because it is a map of a university campus whose features must align with Google's…
Bryce Thomas
  • 10,479
  • 26
  • 77
  • 126
8
votes
2 answers

android: how to load and display large images(A0 size) - like google map did?

I have to load and display some very large images, some have size A0(33.1 × 46.8 inches) .I did follow the way Google map display map by split the image in to may tile( size 128x128 pixel) in difference zoom levels ( for zooming in/out) and load…
Anh Nguyen
  • 413
  • 4
  • 15
8
votes
5 answers

Tile (scalable) stacking algorithm

Here is the problem. I have rectangular canvas that have size of 1. So it have coordinate sistem of (0.0 ... 1.0 - x and 0.0 ... 1.0 - y). I also have some tiles. Tiles are also rectangles. They have diffrent size and amount of tiles is a …
obenjiro
  • 3,665
  • 7
  • 44
  • 82
8
votes
4 answers

Pure HTML + JavaScript client side templating

I want to have achieve something similar to Java Tiles framework using only client side technologies (no server side includes). I would like to have one page, eg layout.html which will contain layout definition. Content placeholder in that page…
Marko
  • 30,263
  • 18
  • 74
  • 108
8
votes
5 answers

Setting view name in spring filter

I've an ErrorFilter which extends the spring GenericFilterBean. I want to show an error page decorated with tiles if some error happens. Is there any way to set a view name from the filter? errorFilter
coder247
  • 2,913
  • 19
  • 50
  • 70
8
votes
3 answers

HTML/JS/CSS Isometric Grid with semi-transparent click-through tiles

I'm trying to create a web app/game that uses a side-on 'isometric' view and transparent tiles. I can display them ok (but not great) using a PHP formula that just sets each div (each tile) as position:absolute and set the top and left parameters.…
Adam M-W
  • 3,509
  • 9
  • 49
  • 69
8
votes
5 answers

Can not find the tag library descriptor for "http://tiles.apache.org/tags-tiles"

I am creating an application using Tiles, Spring and Hibernate. When when running, it is showing following error: Can not find the tag library descriptor for "http://tiles.apache.org/tags-tiles" All the jars are included and mapping is also seeing…
user1653773
  • 373
  • 1
  • 5
  • 18
7
votes
1 answer

How can I get my collision to be more solid?

I'm working on a game in C# with XNA and I've been learning program in C# thanks to Nick Gravelyn's tutorials, but I've hit a snag. While I'm using Nick's collision system, I'm not using his player code. I'm using one that's based on a tutorial by…
IronGiraffe
  • 201
  • 1
  • 3
7
votes
5 answers

How to calculate the height and width of an isometric rectangle/square

I'm writing an isometric tile game. Each tile is twice as wide as it is tall (w:h = 2:1). All tiles in a map are the same size and their width and heights are known (TileWidth and TileHeight). There can be any number of columns (>0) and rows…
Garry Pettet
  • 8,096
  • 22
  • 65
  • 103
1 2
3
86 87